mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
34 lines
795 B
JSON
34 lines
795 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"target": "es2017",
|
|
"esModuleInterop": true,
|
|
"importHelpers": true,
|
|
"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", "ES2020.string"]
|
|
},
|
|
"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
|
|
}
|