Skip to content

Commit 2416091

Browse files
Create tsconfig.json
1 parent a70dcf8 commit 2416091

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2020",
4+
"lib": ["dom", "dom.iterable", "esnext"],
5+
6+
"allowJs": true,
7+
"skipLibCheck": true,
8+
9+
"strict": true,
10+
11+
"noEmit": true,
12+
"incremental": true,
13+
14+
"module": "esnext",
15+
"moduleResolution": "bundler",
16+
17+
"resolveJsonModule": true,
18+
"isolatedModules": true,
19+
20+
"jsx": "react-jsx",
21+
22+
"baseUrl": ".",
23+
"paths": {
24+
"@/*": ["./*"]
25+
},
26+
27+
"plugins": [
28+
{
29+
"name": "next"
30+
}
31+
],
32+
33+
"noUncheckedIndexedAccess": true,
34+
"exactOptionalPropertyTypes": true
35+
},
36+
"include": [
37+
"next-env.d.ts",
38+
".next/types/**/*.ts",
39+
"**/*.ts",
40+
"**/*.tsx"
41+
],
42+
"exclude": ["node_modules"]
43+
}

0 commit comments

Comments
 (0)