Skip to content

Commit 3416eea

Browse files
fix: add tsconfig.json with bundler moduleResolution
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 29d87e8 commit 3416eea

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

tsconfig.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"compilerOptions": {
3+
"target": "ES2017",
4+
"lib": ["dom", "dom.iterable", "esnext"],
5+
"allowJs": true,
6+
"skipLibCheck": true,
7+
"strict": false,
8+
"noEmit": true,
9+
"esModuleInterop": true,
10+
"module": "esnext",
11+
"moduleResolution": "bundler",
12+
"resolveJsonModule": true,
13+
"isolatedModules": true,
14+
"jsx": "preserve",
15+
"incremental": true,
16+
"plugins": [{ "name": "next" }],
17+
"paths": { "@/*": ["./src/*"] }
18+
},
19+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
20+
"exclude": ["node_modules"]
21+
}

0 commit comments

Comments
 (0)