mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
21 lines
395 B
JSON
21 lines
395 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"noEmitOnError": true,
|
||
|
"noImplicitAny": false,
|
||
|
"noImplicitReturns": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"sourceMap": false,
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"removeComments": false,
|
||
|
"noLib": false,
|
||
|
"outDir": "built",
|
||
|
"rootDir": "src"
|
||
|
},
|
||
|
"compileOnSave": false,
|
||
|
"include": [
|
||
|
"./src/**/*.ts"
|
||
|
]
|
||
|
}
|