-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
31 lines (31 loc) · 836 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
{
"compilerOptions": {
"module": "esnext",
"removeComments": true,
"esModuleInterop": true,
"lib": ["dom", "es2017"],
"target": "es6",
"sourceMap": true,
"rootDir": ".",
"outDir": "./dist",
"jsx": "preserve",
"baseUrl": "./",
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"types": ["node"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"exclude": ["node_modules", "dist"],
"include": ["next-env.d.ts", "src/types/*.d.ts", "**/*.ts", "**/*.tsx"]
}