github-desktop/tsconfig.json
2018-07-04 14:29:29 -04:00

29 lines
536 B
JSON

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