31 lines
672 B
JSON
31 lines
672 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "../dist/core",
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"types": ["vitest/globals"],
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@core/*": ["./*"],
|
|
"@adapters/*": ["../adapters/*"],
|
|
"@testing/*": ["../testing/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "bootstrap/**/*.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts",
|
|
"**/*.integration.test.ts",
|
|
"**/__tests__/**"
|
|
]
|
|
}
|