mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-20 21:37:17 +00:00

Change-type: patch Changelog-entry: Convert settings modal to typescript Signed-off-by: Lorenzo Alberto Maria Ambrosi <lorenzothunder.ambrosi@gmail.com>
21 lines
445 B
JSON
21 lines
445 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"lib/**/*.ts",
|
|
"node_modules/electron/**/*.d.ts",
|
|
"typings/**/*.d.ts"
|
|
]
|
|
}
|