mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-19 21:07:18 +00:00
29 lines
686 B
JSON
29 lines
686 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"module": "es2015",
|
|
"target": "es2019",
|
|
"jsx": "react",
|
|
"typeRoots": ["./node_modules/@types", "./typings"],
|
|
"importHelpers": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["dom", "esnext"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./src",
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"lib/**/*.ts",
|
|
"node_modules/electron/**/*.d.ts"
|
|
]
|
|
}
|