Skip to content

Commit 82f28f0

Browse files
committed
add tsconfig.json
1 parent 641dd88 commit 82f28f0

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ coverage
2626
test/**/out*
2727
test/**/next-env.d.ts
2828
test/**/tsconfig.json
29+
!test/production/supports-module-resolution-nodenext/tsconfig.json
2930
.DS_Store
3031
/e2e-tests
3132
test/tmp/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"compilerOptions": {
3+
"esModuleInterop": true,
4+
"module": "esnext",
5+
"jsx": "preserve",
6+
"target": "es5",
7+
"lib": ["dom", "dom.iterable", "esnext"],
8+
"allowJs": true,
9+
"skipLibCheck": true,
10+
"strict": true,
11+
"forceConsistentCasingInFileNames": true,
12+
"noEmit": true,
13+
"incremental": true,
14+
"moduleResolution": "nodenext",
15+
"resolveJsonModule": true,
16+
"isolatedModules": true
17+
},
18+
"exclude": ["node_modules"],
19+
"include": ["next-env.d.ts", "components", "pages"]
20+
}

0 commit comments

Comments
 (0)