21 lines
381 B
JSON
21 lines
381 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": false,
|
|
"outDir": "wwwroot/js",
|
|
"removeComments": false,
|
|
"module": "ES2015",
|
|
"moduleResolution": "Classic",
|
|
"sourceMap": true,
|
|
"target": "es5",
|
|
"lib": ["ES2016", "DOM"]
|
|
},
|
|
"include": [
|
|
"Scripts/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|