inventoresed
Version:
Z-Wave driver written entirely in JavaScript/TypeScript
18 lines (17 loc) • 406 B
JSON
// tsconfig for building - only applies to the src directory
{
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "build",
// Some @internal members need to be accessed from other modules in this monorepo
"stripInternal": false
},
"references": [
{
"path": "../shared/tsconfig.build.json"
}
],
"include": ["src/**/*.ts"],
"exclude": ["src/**/*.test.ts"]
}