-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
38 lines (38 loc) · 1001 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"target": "ES2019",
"jsx": "preserve",
"allowJs": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"removeComments": false,
"resolveJsonModule": true,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"noImplicitAny": true,
"baseUrl": ".",
"paths": {
"@legacy/*": ["src/legacy/*"],
"@components/*": ["src/components/*"],
"@hooks/*": ["src/hooks/*"],
"@server/*": ["src/server/*"],
"@data/*": ["src/data/*"],
"@shared/*": ["src/shared/*"]
},
"lib": ["dom", "es2016", "es2017.object"],
"typeRoots": ["./types"],
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"isolatedModules": true,
"incremental": true
},
"exclude": ["next.config.mjs", "node_modules/@jest"],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}