github-desktop/tsconfig.json

22 lines
406 B
JSON
Raw Normal View History

2016-05-11 16:16:32 +00:00
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
2016-05-11 16:16:32 +00:00
"sourceMap": true,
"jsx": "react",
2017-04-28 20:12:01 +00:00
"strict": true,
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
}