25 lines
486 B
JSON
25 lines
486 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"composite": true,
|
|
"tsBuildInfoFile": "dist/.tsbuildinfo"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../domain" }
|
|
]
|
|
}
|