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