mirror of
https://github.com/aleleba/create-react-ssr.git
synced 2025-07-18 10:38:42 -06:00
PR-420915: Changing the logic for aliases for one source of truth on tsconfig.json and updating packages.
This commit is contained in:
@ -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",
|
||||
|
Reference in New Issue
Block a user