-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.36 KB
/
tsconfig.json
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
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["src/*"],
"@app": ["src/app"],
"@app/*": ["src/app/*"],
"@backend": ["backend"],
"@backend/*": ["backend/*"],
"@components": ["src/components"],
"@components/*": ["src/components/*"],
"@config": ["global/config"],
"@config/*": ["global/config/*"],
"@constants": ["global/constants"],
"@database": ["backend/database"],
"@env": ["global/env.mjs"],
"@trpc": ["backend/trpc/client"],
"public/*": ["public/*"],
"types": ["types"],
"types/*": ["types/*"],
"@arch/*": ["arch/*"]
},
"typeRoots": ["./node_modules/@types", "./types/*.d.ts"],
"target": "ES2017"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", "**/**/node_modules", "**/*.spec.ts"]
}