NullcatChan/tsconfig.json
CaffeinePower 526d09062b [fix] Dockerで動くようにした
ついでにtscをswcに変更した
2023-01-30 18:17:38 +09:00

28 lines
524 B
JSON

{
"compilerOptions": {
"noEmit": true,
"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"
]
}