21 lines
469 B
JSON
21 lines
469 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"types": ["vitest/globals"],
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@core/*": ["../core/*"],
|
|
"@adapters/*": ["./*"],
|
|
"@testing/*": ["../testing/*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
} |