-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
43 lines (43 loc) · 1.13 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
{
"compilerOptions": {
"strict": true,
"jsx": "preserve",
"incremental": true,
"target": "ES2018",
"module": "ESNext",
"lib": ["ESNext", "ESNext.AsyncIterable", "DOM"],
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"sourceMap": true,
"noImplicitAny": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"checkJs": false,
"noUnusedLocals": false,
"strictNullChecks": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"allowSyntheticDefaultImports": true,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"useUnknownInCatchVariables": false,
"strictPropertyInitialization": false,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
},
"typeRoots": ["./types", "./node_modules/@types"]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "./types/**/*"],
"exclude": ["node_modules"]
}