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