2016-12-29 07:49:51 +09:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitReturns": true,
|
2016-12-29 10:56:24 +09:00
|
|
|
"noUnusedParameters": false,
|
2016-12-29 10:01:40 +09:00
|
|
|
"noUnusedLocals": true,
|
2016-12-29 07:49:51 +09:00
|
|
|
"noFallthroughCasesInSwitch": 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",
|
2017-02-20 01:00:00 +09:00
|
|
|
"./src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./src/web/**/*.ts"
|
2016-12-29 07:49:51 +09:00
|
|
|
]
|
|
|
|
}
|