-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"extends": "@ibexa/ts-config",
"compilerOptions": {
"target": "es2024",
"noEmit": true,
"module": "esnext",
"moduleResolution": "bundler",
"typeRoots": [
"./types",
"./node_modules/@types"
],
"paths": {
"@ids-core": ["./packages/core/src/"],
"@ids-core/*": ["./packages/core/src/*"],
"@ids-components/*": ["./packages/components/src/components/*"],
"@ids-context/*": ["./packages/components/src/context/*"],
"@ids-hoc/*": ["./packages/components/src/hoc/*"],
"@ids-hooks/*": ["./packages/components/src/hooks/*"],
"@ids-partials/*": ["./packages/components/src/partials/*"],
"@ids-sb-decorators/*": ["./src/storybook/decorators/*"],
"@ids-sb-utils/*": ["./src/storybook/utils/*"],
"@ids-shared/*": ["./packages/components/src/shared/*"],
"@ids-types/*": ["./types/*"]
}
},
"include": ["src/**/*", ".storybook/*", "types/*", "stories/**/*"]
}