mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 14:13:08 +00:00
18 lines
318 B
JSON
18 lines
318 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"module": "commonjs",
|
||
|
"noImplicitAny": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"preserveConstEnums": true,
|
||
|
"removeComments": true,
|
||
|
"sourceMap": true,
|
||
|
"strictNullChecks": true,
|
||
|
"outDir": "./build"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*.ts",
|
||
|
"typings/**/*.d.ts"
|
||
|
]
|
||
|
}
|