17 lines
387 B
JSON
17 lines
387 B
JSON
|
|
{
|
||
|
|
"extends": "../../../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"composite": true,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": true
|
||
|
|
},
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist"],
|
||
|
|
"references": [
|
||
|
|
{ "path": "../../core" },
|
||
|
|
{ "path": "../server" }
|
||
|
|
]
|
||
|
|
}
|