-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 1.32 KB
/
Copy pathtsconfig.base.json
File metadata and controls
39 lines (39 loc) · 1.32 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"compilerOptions": {
"composite": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"importHelpers": true,
"isolatedModules": true,
"lib": ["es2022", "DOM", "ES2015", "ESNext"],
"module": "esnext",
"moduleResolution": "bundler",
"noEmitOnError": false,
"noFallthroughCasesInSwitch": false,
"noImplicitOverride": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"skipLibCheck": true,
"strict": false,
"target": "es2022",
"customConditions": ["development"],
"forceConsistentCasingInFileNames": false,
"baseUrl": ".",
"paths": {
"@entry/design-token": ["libs/design-token/src/index.ts"],
"@entry/design-token/*": ["libs/design-token/src/*"],
"@entry/hooks": ["libs/hooks/src/index.ts"],
"@entry/hooks/*": ["libs/hooks/src/*"],
"@entry/types": ["libs/types/src/index.ts"],
"@entry/types/*": ["libs/types/src/*"],
"@entry/ui": ["libs/ui/src/index.ts"],
"@entry/ui/*": ["libs/ui/src/*"],
"@entry/utils": ["libs/utils/src/index.ts"],
"@entry/utils/*": ["libs/utils/src/*"],
"@org/entry-admin": ["apps/entry-admin/src"],
"@org/entry-admin/*": ["apps/entry-admin/src/*"],
"@org/entry-user": ["apps/entry-user/src"],
"@org/entry-user/*": ["apps/entry-user/src/*"]
}
}
}