mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-20 13:27:17 +00:00
21 lines
477 B
JSON
21 lines
477 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"jsx": "react",
|
|
"typeRoots": ["./node_modules/@types", "./typings"],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"lib/**/*.ts",
|
|
"node_modules/electron/**/*.d.ts"
|
|
]
|
|
}
|