This repository was archived by the owner on Apr 12, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
67 lines (67 loc) · 1.95 KB
/
tsconfig.json
File metadata and controls
67 lines (67 loc) · 1.95 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"strict": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noEmit": true,
"typeRoots": ["./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@api/*": ["./src/api/*"],
"@api": ["./src/api"],
"@ui/*": ["./src/ui/*"],
"@ui": ["./src/ui"],
"@providers/*": ["./src/providers/*"],
"@providers": ["./src/providers"],
"@components/*": ["./src/components/*"],
"@components": ["./src/components"],
"@hooks/*": ["./src/hooks/*"],
"@hooks": ["./src/hooks"],
"@utils/*": ["./src/utils/*"],
"@utils": ["./src/utils"],
"@typings": ["./src/typings"],
"@typings/*": ["./src/typings/*"],
"@store": ["./src/store"],
"@store/*": ["./src/store/*"],
"@translations": ["./src/translations"],
"@translations/*": ["./src/translations/*"],
"@app": ["./src/app"],
"@app/*": ["./src/app/*"],
"@context": ["./src/context"],
"@context/*": ["./src/context/*"],
"@package-json": ["./package.json"],
"@constants": ["./src/constants"],
"@theme": ["./src/theme"],
"@test-utils": ["./src/test-utils"]
},
"allowJs": true,
"incremental": true,
"plugins": [
{
"name": "next"
}
]
},
"exclude": ["node_modules", "__tests__", "dist", ".next"],
"include": [
"./src/**/*",
"./src/**/*.json",
".next/types/**/*.ts",
"postcss.config.cjs",
"next-env.d.ts",
"vitest.config.ts",
"next.config.mjs",
".eslintrc.js"
]
}