github-desktop/tsconfig.json
Markus Olsson 6dccf14728 Chrome 78 supports all of ES2018 but we'll only add the Promise.finally for now
Co-Authored-By: Rafael Oleza <rafeca@users.noreply.github.com>
2020-06-16 18:51:20 +02:00

33 lines
724 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es2017",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"sourceMap": true,
"jsx": "react",
"strict": true,
"noEmit": true,
"outDir": "./out",
"lib": ["ES2017", "DOM", "DOM.Iterable", "ES2018.Promise"]
},
"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
}