mirror of
https://github.com/desktop/desktop
synced 2024-10-30 17:25:09 +00:00
23 lines
471 B
JSON
23 lines
471 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es6",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"outDir": "./out"
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"app/node_modules",
|
|
"dist",
|
|
"out"
|
|
],
|
|
"compileOnSave": false
|
|
}
|