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