21 lines
365 B
JSON
21 lines
365 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./dist",
|
||
|
|
"composite": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": false
|
||
|
|
},
|
||
|
|
"references": [
|
||
|
|
{
|
||
|
|
"path": "../shared"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"path": "../schemas"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"include": ["src/**/*"],
|
||
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
|
||
|
|
}
|
||
|
|
|