26 lines
477 B
JSON
26 lines
477 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"emitDeclarationOnly": false,
|
|
"emitDecoratorMetadata": true,
|
|
"allowImportingTsExtensions": false,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"lib": [
|
|
"ES2024"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"test",
|
|
"**/*spec.ts"
|
|
]
|
|
} |