2016-05-11 16:16:32 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es6",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
2016-07-14 22:22:06 +00:00
|
|
|
"noImplicitThis": true,
|
2016-05-11 16:16:32 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-07-14 22:22:06 +00:00
|
|
|
"noUnusedLocals": true,
|
2016-07-11 18:53:52 +00:00
|
|
|
"strictNullChecks": true,
|
2016-05-11 16:16:32 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
2017-01-12 22:21:41 +00:00
|
|
|
"outDir": "./out"
|
2016-05-11 16:16:32 +00:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2016-08-03 18:00:48 +00:00
|
|
|
"app/node_modules",
|
2016-05-23 19:01:29 +00:00
|
|
|
"dist",
|
2016-08-03 18:00:48 +00:00
|
|
|
"out"
|
2016-05-11 16:16:32 +00:00
|
|
|
],
|
|
|
|
"compileOnSave": false
|
|
|
|
}
|