mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
826eec2e4f
Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
17 lines
358 B
JSON
17 lines
358 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2019",
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"preserveConstEnums": true,
|
|
"inlineSourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./build/",
|
|
"skipLibCheck": true,
|
|
"lib": ["es6"],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": ["src/**/*", "test/**/*", "typings/**/*.d.ts"]
|
|
}
|