Skip to content

Commit

Permalink
Merge pull request #612 from auth0/next-12
Browse files Browse the repository at this point in the history
Update to next 12
  • Loading branch information
adamjmcgrath authored Mar 11, 2022
2 parents a219537 + 8f2648b commit 351a820
Show file tree
Hide file tree
Showing 6 changed files with 14,566 additions and 1,804 deletions.
5 changes: 5 additions & 0 deletions examples/basic-example/next-env.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
29 changes: 29 additions & 0 deletions examples/basic-example/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}
Loading

0 comments on commit 351a820

Please sign in to comment.