github-desktop/tsconfig.json
Markus Olsson f0608819f9 Okay, let's not take this fight right now
Compile the world
2017-10-20 10:50:57 +02:00

24 lines
500 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es2017",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"sourceMap": true,
"jsx": "react",
"strict": true,
"outDir": "./out"
},
"include": ["app/**/*.ts", "app/**/*.tsx", "app/**/*.d.tsx"],
"exclude": [
"node_modules",
"app/node_modules",
"dist",
"out",
"app/src/highlighter"
],
"compileOnSave": false
}