forked from FoundKeyGang/FoundKey
25 lines
546 B
JSON
25 lines
546 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"experimentalDecorators": true,
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"outDir": "built",
|
|
"rootDir": "src"
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./node_modules/typescript/lib/lib.es6.d.ts",
|
|
"./src/**/*.ts",
|
|
"!./src/web/**/*.ts"
|
|
]
|
|
}
|