17 lines
430 B
JSON
17 lines
430 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"composite": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"tsBuildInfoFile": "./tsconfig.build.tsbuildinfo"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "test", "**/*.spec.ts"],
|
|
"references": [{ "path": "../../packages/domain" }]
|
|
}
|