balena-supervisor/tsconfig.json
Cameron Diver 892d227cc2
compose/service: Convert module to typescript and add network config
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>
2018-09-21 10:30:27 +01:00

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"
]
}