github-desktop/script/tsconfig.json
Rafael Oleza 1a9848af7f
Enable importHelpers TypeScript compiler option
This avoids inlining the TypeScript helpers and instead imports them from tslib, saving bundle size
2020-07-08 17:40:20 +02:00

19 lines
424 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"importHelpers": true,
"target": "es2017",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"sourceMap": false,
"noEmit": true,
"strict": true
},
"compileOnSave": false
}