PR-420915: Changing the logic for aliases for one source of truth on tsconfig.json and updating packages.

This commit is contained in:
2023-02-21 00:10:34 +00:00
parent 176636ea6b
commit 0bbe080ea0
15 changed files with 1279 additions and 1154 deletions

View File

@ -26,13 +26,27 @@
"node"
],
"sourceMap": true,
"baseUrl": "**/*",
"baseUrl": ".",
"outDir": "build",
"skipLibCheck": true,
"noImplicitAny": false
"noImplicitAny": false,
"paths": {
"@components/*": ["src/frontend/components/*"],
"@components": ["src/frontend/components"],
"@styles/*": ["src/frontend/styles/*"],
"@styles": ["src/frontend/styles"],
"@actions/*": ["src/frontend/actions/*"],
"@actions": ["src/frontend/actions"],
"@reducers/*": ["src/frontend/reducers"],
"@reducers": ["src/frontend/reducers"],
"@config/*": ["config/*"],
"@config": ["config"],
"@mocks/*": ["src/__mocks__/*"],
"@mocks": ["src/__mocks__"]
}
},
"include": [
"**/*"
"."
],
"exclude": [
"node_modules",