github-desktop/tsconfig.json

30 lines
693 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",
2022-05-04 07:06:43 +00:00
"target": "ES2022",
"esModuleInterop": true,
2020-10-19 22:55:14 +00:00
"resolveJsonModule": 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,
"outDir": "./out",
2022-01-28 09:29:50 +00:00
"useUnknownInCatchVariables": false
2016-05-11 16:16:32 +00:00
},
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
}