-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (46 loc) · 1.13 KB
/
tsconfig.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"compilerOptions": {
"typeRoots": ["./node_modules/@types", "./server/types"],
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"noEmitOnError": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": ["es2020", "dom"],
"outDir": "build",
"baseUrl": ".",
"paths": {
"server/*": ["src/server/*"],
"shared/*": ["src/shared/*"],
"src/*": ["src/*"],
"scripts/*": ["scripts/*"],
"root/*": ["./*"]
},
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
},
"include": ["src/**/*", "scripts/**/*", "package.json", ".next/types/**/*.ts"],
"exclude": ["node_modules", "**/node_modules/*"],
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}