Skip to content

Commit 3350765

Browse files
author
username
committed
feat: add auto-generated files
1 parent da96646 commit 3350765

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

next-env.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/// <reference types="next" />
2+
/// <reference types="next/types/global" />

tsconfig.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@
1515
"preserveConstEnums": true,
1616
"sourceMap": true,
1717
"experimentalDecorators": true,
18-
"typeRoots": ["./node_modules/@types"]
19-
}
18+
"typeRoots": ["./node_modules/@types"],
19+
"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"]
2027
}

0 commit comments

Comments
 (0)