mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
30 lines
774 B
JSON
30 lines
774 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"target": "es2017",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"importHelpers": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"strict": true,
|
|
"outDir": "./out",
|
|
"lib": ["ES2017", "DOM", "DOM.Iterable", "ES2018.Promise", "ES2020.string"],
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["app/**/*.ts", "app/**/*.tsx", "app/**/*.d.tsx"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"app/node_modules",
|
|
"dist",
|
|
"out",
|
|
"app/src/highlighter"
|
|
],
|
|
"compileOnSave": false
|
|
}
|