node-zwave-js/packages/cc/tsconfig.build.json

30 lines
588 B
JSON

// tsconfig for building - only applies to the src directory
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "build/esm",
// Do not use the @@dev export for compiling
"customConditions": []
},
"references": [
{
"path": "../core/tsconfig.build.json"
},
{
"path": "../host/tsconfig.build.json"
},
{
"path": "../shared/tsconfig.build.json"
},
{
"path": "../maintenance/tsconfig.build.json"
},
{
"path": "../transformers/tsconfig.build.json"
}
],
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"]
}