17 lines
302 B
JSON
17 lines
302 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"composite": true,
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src"
|
||
|
|
},
|
||
|
|
"references": [
|
||
|
|
{
|
||
|
|
"path": "../shared"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
|
||
|
|
}
|
||
|
|
|