We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da96646 commit 3350765Copy full SHA for 3350765
next-env.d.ts
@@ -0,0 +1,2 @@
1
+/// <reference types="next" />
2
+/// <reference types="next/types/global" />
tsconfig.json
@@ -15,6 +15,13 @@
15
"preserveConstEnums": true,
16
"sourceMap": true,
17
"experimentalDecorators": true,
18
- "typeRoots": ["./node_modules/@types"]
19
- }
+ "typeRoots": ["./node_modules/@types"],
+ "strict": false,
20
+ "forceConsistentCasingInFileNames": true,
21
+ "esModuleInterop": true,
22
+ "resolveJsonModule": true,
23
+ "isolatedModules": true
24
+ },
25
+ "exclude": ["node_modules"],
26
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
27
}
0 commit comments