balena-cli/tsconfig.json
Paulo Castro 13e3e5e8ea Bump min Node.js version to 8.0, ts-node to 8.1 and typescript to 3.4.
Refactor typings folder for use with the tsconfig typeRoots option.

Change-type: major
Signed-off-by: Paulo Castro <paulo@balena.io>
2019-06-04 13:51:55 +01:00

24 lines
453 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"outDir": "build",
"strict": true,
"strictPropertyInitialization": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"skipLibCheck": true,
"typeRoots" : [
"./node_modules/@types",
"./node_modules/etcher-sdk/typings",
"./typings"
]
},
"include": [
"./lib/**/*.ts"
]
}