mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
37f23d670d
Signed-off-by: 20k-ultra <3946250+20k-ultra@users.noreply.github.com>
18 lines
393 B
JSON
18 lines
393 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"strictPropertyInitialization": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"outDir": "./build/",
|
|
"skipLibCheck": true,
|
|
"lib": ["es2019"],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*", "test/**/*", "typings/**/*.d.ts"]
|
|
}
|