-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
42 lines (42 loc) · 1.31 KB
/
tsconfig.base.json
File metadata and controls
42 lines (42 loc) · 1.31 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
40
41
42
{
"compilerOptions": {
"target": "ES2022",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": false,
"skipLibCheck": true,
"strict": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"tsBuildInfoFile": ".tsbuildinfo/tsbuildinfo",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"plugins": [
{
"name": "next"
}
],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@/utils/*": ["./src/utils/*"],
"@/lib/*": ["./src/lib/*"],
"@/amplify/*": ["./amplify/*"],
"@/amplify_outputs.json": ["./amplify_outputs.json"],
"@/data-schema": ["./amplify/data/resource"],
"@/liquid-forge/*": ["./packages/liquid-forge/*"],
"@/liquid-forge": ["./packages/liquid-forge"],
"@/theme-studio/*": ["./packages/theme-studio/src/*"],
"@/theme-studio": ["./packages/theme-studio/src"],
"@/context/*": ["./src/context/*"],
"@/hooks/*": ["./src/hooks/*"],
"@/tenant-domains/*": ["./packages/tenant-domains/*"],
"@/tenant-domains": ["./packages/tenant-domains"],
"@/emails/*": ["./packages/emails/*"],
"@/emails/templates/*": ["./packages/emails/templates/*"],
"@/api/*": ["./src/app/api/*"]
},
"incremental": true
}
}