balena-cli/tsconfig.json
Paulo Castro 5d91b2e830 Fix typescript and global promise errors to allow for backport changes
Change-type: patch
Signed-off-by: Paulo Castro <paulo@balena.io>
2019-07-24 14:29:26 +01:00

30 lines
561 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "build",
"strict": true,
"strictPropertyInitialization": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"skipLibCheck": true,
"lib": [
// es5 defaults:
"dom",
"es5",
"scripthost",
// some specific es6 bits we're sure are safe:
"es2015.collection",
"es2015.iterable",
"es2016.array.include"
]
},
"include": [
"./typings/*.d.ts",
"./lib/**/*.ts"
]
}