Skip to content

Commit

Permalink
added path aliases in tsconfig
Browse files Browse the repository at this point in the history
Refs: #6963
  • Loading branch information
Makko74 committed Nov 7, 2024
1 parent da516bc commit b912998
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/components/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,17 @@
"removeComments": true,
"typeRoots": ["node_modules/@types"],
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@component-names": ["./src/core/component-names"],
"@fc": ["./src/functional-components"],
"@functional-components": ["./src/functional-components"],
"@schema": ["./src/schema"],
"@testing": ["./src/utils/testing"],
"@utils": ["./src/utils"],
"@i18n": ["./src/i18n"]
}
},
"include": ["src"],
"exclude": ["node_modules"]
Expand Down

0 comments on commit b912998

Please sign in to comment.