23 lines
516 B
JSON
23 lines
516 B
JSON
// tsconfig for IntelliSense - active in all files in the current package
|
|
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"plugins": [
|
|
{
|
|
"transform": "@zwave-js/transformers/validateArgs/program",
|
|
"transformProgram": true
|
|
},
|
|
{
|
|
"transform": "@zwave-js/transformers/validateArgs/decorators"
|
|
}
|
|
],
|
|
"typeRoots": [
|
|
"src/lib/@types",
|
|
"node_modules/@types",
|
|
"../../node_modules/@types"
|
|
]
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["build/**", "node_modules/**"]
|
|
}
|