-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
42 lines (37 loc) · 934 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
39
40
41
42
{
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ES2017",
"module": "Preserve",
// ^ also implies:
// "moduleResolution": "bundler",
// "esModuleInterop": true,
// "resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"noEmit": true,
"incremental": true,
"skipLibCheck": true,
"isolatedModules": true,
"jsx": "preserve",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"plugins": [{ "name": "next" }]
},
"include": [
".next/types/**/*.ts",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js"
],
"exclude": ["node_modules"]
}