-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 940 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 940 Bytes
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
{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vitest/globals", "vite/client", "@testing-library/jest-dom/vitest"],
"module": "ESNext",
"strict": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/components/*": ["src/components/*"],
"@/hooks/*": ["src/hooks/*"],
"@/services/*": ["src/services/*"],
"@/utils/*": ["src/utils/*"],
"@/design-system/*": ["design-system/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts", "capacitor.config.ts"],
"exclude": ["node_modules", "dist", "docs", "app", "ios", "android"]
}