mirror of
https://github.com/nullnyat/NullcatChan.git
synced 2025-04-29 02:17:18 +09:00
32 lines
583 B
JSON
32 lines
583 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": false,
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"outDir": "built",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./src/**/*.ts"
|
|
],
|
|
"ts-node": {
|
|
"swc": true
|
|
}
|
|
}
|