2016-05-11 16:16:32 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-07-10 19:40:36 +00:00
|
|
|
"module": "esnext",
|
2016-05-11 16:16:32 +00:00
|
|
|
"moduleResolution": "node",
|
2022-05-04 07:06:43 +00:00
|
|
|
"target": "ES2022",
|
2020-07-08 08:41:20 +00:00
|
|
|
"esModuleInterop": true,
|
2020-10-19 22:55:14 +00:00
|
|
|
"resolveJsonModule": true,
|
2020-07-08 15:29:10 +00:00
|
|
|
"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,
|
2016-07-14 22:22:06 +00:00
|
|
|
"noUnusedLocals": true,
|
2016-05-11 16:16:32 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
2017-04-28 20:12:01 +00:00
|
|
|
"strict": true,
|
2020-06-16 14:01:28 +00:00
|
|
|
"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",
|
2017-10-18 11:28:26 +00:00
|
|
|
"out",
|
|
|
|
"app/src/highlighter"
|
2016-05-11 16:16:32 +00:00
|
|
|
],
|
|
|
|
"compileOnSave": false
|
|
|
|
}
|