github-desktop/tsconfig.json

35 lines
795 B
JSON
Raw Normal View History

2016-05-11 16:16:32 +00:00
{
"compilerOptions": {
"module": "esnext",
2016-05-11 16:16:32 +00:00
"moduleResolution": "node",
2017-09-08 14:55:17 +00:00
"target": "es2017",
"esModuleInterop": true,
"importHelpers": true,
2019-10-28 20:42:51 +00:00
"allowUnreachableCode": false,
"allowUnusedLabels": false,
2016-05-11 16:16:32 +00:00
"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-10-28 18:08:07 +00:00
"noEmit": true,
"outDir": "./out",
2020-09-29 16:52:38 +00:00
"lib": ["ES2017", "DOM", "DOM.Iterable", "ES2018.Promise", "ES2020.string"]
2016-05-11 16:16:32 +00:00
},
2018-11-15 00:53:47 +00:00
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
2019-04-17 14:01:09 +00:00
"include": ["app/**/*.ts", "app/**/*.tsx", "app/**/*.d.tsx"],
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",
"out",
"app/src/highlighter"
2016-05-11 16:16:32 +00:00
],
"compileOnSave": false
}