Skip to content

Commit 1b16a9d

Browse files
committed
chore: add missing next-env.d.ts update
1 parent df2a895 commit 1b16a9d

File tree

2 files changed

+7
-19
lines changed

2 files changed

+7
-19
lines changed

apps/docs/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

apps/docs/tsconfig.json

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,10 @@
55
"compilerOptions": {
66
"baseUrl": ".",
77
"target": "es5",
8-
"lib": [
9-
"dom",
10-
"dom.iterable",
11-
"esnext"
12-
],
8+
"lib": ["dom", "dom.iterable", "esnext"],
139
"allowJs": true,
1410
"skipLibCheck": true,
15-
"strict": false,
11+
"strict": true,
1612
"forceConsistentCasingInFileNames": true,
1713
"noEmit": true,
1814
"incremental": true,
@@ -23,17 +19,9 @@
2319
"module": "esnext",
2420
"resolveJsonModule": true,
2521
"paths": {
26-
"@components/*": [
27-
"components/*"
28-
]
22+
"@components/*": ["components/*"]
2923
}
3024
},
31-
"include": [
32-
"next-env.d.ts",
33-
"**/*.ts",
34-
"**/*.tsx"
35-
],
36-
"exclude": [
37-
"node_modules"
38-
]
39-
}
25+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
26+
"exclude": ["node_modules"]
27+
}

0 commit comments

Comments
 (0)