mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
2ae22b4fbd
Change-type: patch
18 lines
396 B
JSON
18 lines
396 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"preserveConstEnums": true,
|
|
"inlineSourceMap": true,
|
|
"outDir": "./build/",
|
|
"skipLibCheck": true,
|
|
"lib": ["es6"],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*", "test/**/*", "typings/**/*.d.ts"]
|
|
}
|