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