mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 06:07:57 +00:00
892d227cc2
Stability improvements; * Printing of unsupported compose fields * Added a lot of tests * All compose configuration has a default value, enabling better comparison Change-type: minor Signed-off-by: Cameron Diver <cameron@resin.io>
21 lines
348 B
JSON
21 lines
348 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"noUnusedParameters": true,
|
|
"noUnusedLocals": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"strictNullChecks": true,
|
|
"outDir": "./build/src/",
|
|
"lib": [
|
|
"es6"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"typings/**/*.d.ts"
|
|
]
|
|
}
|