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

20 lines
483 B
JSON

// tsconfig for building - only applies to the src directory
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "build/esm",
// Some @internal members need to be accessed from other modules in this monorepo
"stripInternal": false,
// Do not use the @@dev export for compiling
"customConditions": []
},
"references": [
{
"path": "../shared/tsconfig.build.json"
}
],
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"]
}