1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-13 22:28:14 +09:00
hotomoe/src/tsconfig.json
2017-03-04 19:21:04 +09:00

24 lines
473 B
JSON

{
"compilerOptions": {
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"declaration": false,
"sourceMap": false,
"target": "es2017",
"module": "commonjs",
"removeComments": false,
"noLib": false
},
"compileOnSave": false,
"include": [
"./**/*.ts"
],
"exclude": [
"./web/app/**/*.ts"
]
}