mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-22 22:37:18 +00:00
20 lines
444 B
JSON
20 lines
444 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
|
|
},
|
|
"include": [
|
|
"lib/**/*.ts",
|
|
"node_modules/electron/**/*.d.ts"
|
|
]
|
|
}
|