-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
34 lines (32 loc) · 1.04 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
{
"compilerOptions": {
"target" : "ES2018",
"module" : "esnext",
"moduleResolution" : "node",
"jsx" : "preserve",
"lib" : ["dom", "dom.iterable", "esnext"],
"baseUrl" : ".",
"strict" : true,
"noEmit" : true,
"allowJs" : true,
"incremental" : true,
"skipLibCheck" : true,
"isolatedModules" : true,
"esModuleInterop" : true,
"resolveJsonModule" : true,
"noUncheckedIndexedAccess" : true,
"forceConsistentCasingInFileNames": true,
"plugins": [ {"name": "next"} ],
"paths" : {"@/*": ["./src/*"]}
},
"include": [
".eslintrc.cjs",
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.mjs",
".next/types/**/*.ts"
],
"exclude": ["node_modules"]
}