mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-11 15:33:06 +00:00
13e3e5e8ea
Refactor typings folder for use with the tsconfig typeRoots option. Change-type: major Signed-off-by: Paulo Castro <paulo@balena.io>
19 lines
358 B
JSON
19 lines
358 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"strict": true,
|
|
"strictPropertyInitialization": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"preserveConstEnums": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots" : [
|
|
"../node_modules/@types",
|
|
"../typings"
|
|
]
|
|
}
|
|
}
|