-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.38 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
49
{
"compilerOptions": {
"typeRoots": [],
"types": ["node", "@types/jest"],
"baseUrl": ".",
"paths": {
"@/server": ["./server"],
"@/pages/*": ["./pages/*"],
"@/pages": ["./pages"],
"@/lib/*": ["./lib/*"],
"@/lib": ["./lib"],
"@/components/*": ["./components/*"],
"@/components": ["./components"],
"@/client-state/*": ["./client-state/*"],
"@/clienttate/*": ["./client-state"],
"@/services/*": ["./services/*"],
"@/services": ["./services"],
"@/repositories/*": ["./repositories/*"],
"@/repositories": ["./repositories"],
"@/__test-utils__/*": ["./__test-utils__/*"],
"@/__test-utils__": ["./__test-utils__"],
"@/workers/*": ["./workers/*"],
"@/workers": ["./workers"]
},
"target": "es2017",
"module": "commonjs",
"lib": ["dom", "dom.iterable", "esnext", "es5", "es6"],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"next.config.js"
],
"exclude": ["node_modules", "*jest*"]
}