github-desktop/tsconfig.json
2018-11-14 16:54:27 -08:00

34 lines
609 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"
},
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"include": [
"app/**/*.ts",
"app/**/*.tsx",
"app/**/*.d.tsx"
],
"exclude": [
"node_modules",
"app/node_modules",
"dist",
"out",
"app/src/highlighter"
],
"compileOnSave": false
}