Skip to content

Commit

Permalink
add tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
qrohlf committed Feb 13, 2023
1 parent 641dd88 commit 82f28f0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ coverage
test/**/out*
test/**/next-env.d.ts
test/**/tsconfig.json
!test/production/supports-module-resolution-nodenext/tsconfig.json
.DS_Store
/e2e-tests
test/tmp/**
Expand Down
20 changes: 20 additions & 0 deletions test/production/supports-module-resolution-nodenext/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"esModuleInterop": true,
"module": "esnext",
"jsx": "preserve",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true
},
"exclude": ["node_modules"],
"include": ["next-env.d.ts", "components", "pages"]
}

0 comments on commit 82f28f0

Please sign in to comment.