refactor
This commit is contained in:
@@ -1,22 +1,20 @@
|
||||
{
|
||||
"extends": "../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "../", // Base URL is the project root
|
||||
"paths": {
|
||||
"@gridpilot/core/*": ["core/*"],
|
||||
"@gridpilot/shared/*": ["core/shared/*"],
|
||||
"@gridpilot/identity/application/dto/*": ["core/identity/application/dto/*"],
|
||||
"@gridpilot/identity/application/ports/*": ["core/identity/application/ports/*"],
|
||||
"@gridpilot/identity/domain/repositories/*": ["core/identity/domain/repositories/*"],
|
||||
"@gridpilot/identity/domain/services/*": ["core/identity/domain/services/*"],
|
||||
"@gridpilot/racing/domain/repositories/*": ["core/racing/domain/repositories/*"],
|
||||
"@gridpilot/racing/domain/entities/*": ["core/racing/domain/entities/*"],
|
||||
"@gridpilot/racing/application/ports/*": ["core/racing/application/ports/*"]
|
||||
},
|
||||
"rootDir": ".",
|
||||
"outDir": "dist",
|
||||
"baseUrl": ".",
|
||||
"composite": true,
|
||||
"outDir": "./dist",
|
||||
"rootDir": "../" // Root directory is the project root
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"sourceMap": true,
|
||||
"paths": {
|
||||
"@/*": ["./*"],
|
||||
"@core/*": ["../core/*"],
|
||||
"@adapters/*": ["./*"],
|
||||
"@testing/*": ["../testing/*"]
|
||||
}
|
||||
},
|
||||
"include": ["**/*", "../core/**/*"],
|
||||
"exclude": ["node_modules", "dist", "**/*.spec.ts"]
|
||||
"include": ["**/*.ts"],
|
||||
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"]
|
||||
}
|
||||
Reference in New Issue
Block a user