mirror of
https://github.com/desktop/desktop
synced 2024-11-05 20:49:32 +00:00
21 lines
409 B
JSON
21 lines
409 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2017",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"strict": true,
|
|
"outDir": "./out"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"app/node_modules",
|
|
"dist",
|
|
"out"
|
|
],
|
|
"compileOnSave": false
|
|
}
|