balena-cli/tsconfig.json

18 lines
301 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "build",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true
},
"include": [
2017-12-19 17:00:31 +00:00
"./typings/*.d.ts",
"./lib/**/*.ts"
]
}