mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-21 05:47:18 +00:00

Change-type: patch Changelog-entry: Allow typescript files Signed-off-by: Lorenzo Alberto Maria Ambrosi <lorenzoa@balena.io>
20 lines
403 B
JSON
20 lines
403 B
JSON
{
|
|
"compilerOptions": {
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"jsx": "react"
|
|
},
|
|
"include": [
|
|
"lib/**/*.ts",
|
|
"node_modules/electron/**/*.d.ts",
|
|
"typings/**/*.d.ts"
|
|
]
|
|
}
|