mango-v4/tsconfig.json

21 lines
462 B
JSON
Raw Normal View History

{
"compilerOptions": {
"esModuleInterop": true,
"moduleResolution": "node",
"lib": ["es2019"],
"outDir": "./dist",
"resolveJsonModule": true,
"noImplicitAny": false,
"sourceMap": true,
"skipLibCheck": true,
"target": "es2019"
},
2022-07-05 20:38:53 -07:00
"include": ["ts/client/src", "ts/client/scripts", "ts/client/scripts"],
"exclude": [
"./ts/**/*.test.js",
"node_modules",
"**/node_modules",
"./ts/client/src/scripts"
]
}