forked from cinnyapp/cinny
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.01 KB
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"compilerOptions": {
"sourceMap": true,
"jsx": "react-jsx",
"target": "ES2022",
"module": "ES2022",
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"$hooks/*": ["src/app/hooks/*"],
"$plugins/*": ["src/app/plugins/*"],
"$components/*": ["src/app/components/*"],
"$features/*": ["src/app/features/*"],
"$state/*": ["src/app/state/*"],
"$styles/*": ["src/app/styles/*"],
"$utils/*": ["src/app/utils/*"],
"$pages/*": ["src/app/pages/*"],
"$types/*": ["src/types/*"],
"$public/*": ["public/*"],
"$client/*": ["src/client/*"]
},
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"resolveJsonModule": true,
"outDir": "dist",
"skipLibCheck": true,
"lib": ["ES2022", "DOM"]
},
"exclude": ["node_modules", "dist"],
"include": ["src", "vite.config.ts"]
}