28 lines
522 B
JSON
28 lines
522 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"removeComments": false,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "Bundler",
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"rootDir": "wwwroot/ts",
|
|
"outDir": "wwwroot/js"
|
|
},
|
|
"include": [
|
|
"wwwroot/ts/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"wwwroot/js"
|
|
],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"module": "CommonJS"
|
|
}
|
|
}
|
|
}
|