21 lines
421 B
JSON
21 lines
421 B
JSON
// tsconfig for building - only applies to the src directory
|
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "build",
|
|
// Do not use the @@dev export for compiling
|
|
"customConditions": []
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../core/tsconfig.build.json"
|
|
},
|
|
{
|
|
"path": "../zwave-js/tsconfig.build.json"
|
|
}
|
|
],
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["src/**/*.test.ts"]
|
|
}
|