Skip to content

Commit fd6b7e6

Browse files
authored
chore(nextjs): configure tsconfig (#8127)
1 parent 9f16142 commit fd6b7e6

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

apps/site/tsconfig.json

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,26 @@
1414
"isolatedModules": true,
1515
"jsx": "preserve",
1616
"incremental": true,
17-
"plugins": [{ "name": "next" }],
17+
"plugins": [
18+
{
19+
"name": "next"
20+
}
21+
],
1822
"baseUrl": "."
1923
},
20-
"mdx": { "checkMdx": true },
24+
"mdx": {
25+
"checkMdx": true
26+
},
2127
"include": [
22-
"**/*.ts",
23-
"**/*.tsx",
2428
"**/*.js",
25-
"**/*.mjs",
2629
"**/*.jsx",
2730
"**/*.mdx",
31+
"**/*.mjs",
32+
"**/*.ts",
33+
"**/*.tsx",
2834
// Explicitly include since the globs won't match the `.`
29-
".stylelintrc.mjs"
35+
".stylelintrc.mjs",
36+
".next/types/**/*.ts"
3037
],
3138
"exclude": ["node_modules", ".next"]
3239
}

0 commit comments

Comments
 (0)