We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f16142 commit fd6b7e6Copy full SHA for fd6b7e6
apps/site/tsconfig.json
@@ -14,19 +14,26 @@
14
"isolatedModules": true,
15
"jsx": "preserve",
16
"incremental": true,
17
- "plugins": [{ "name": "next" }],
+ "plugins": [
18
+ {
19
+ "name": "next"
20
+ }
21
+ ],
22
"baseUrl": "."
23
},
- "mdx": { "checkMdx": true },
24
+ "mdx": {
25
+ "checkMdx": true
26
+ },
27
"include": [
- "**/*.ts",
- "**/*.tsx",
28
"**/*.js",
- "**/*.mjs",
29
"**/*.jsx",
30
"**/*.mdx",
31
+ "**/*.mjs",
32
+ "**/*.ts",
33
+ "**/*.tsx",
34
// Explicitly include since the globs won't match the `.`
- ".stylelintrc.mjs"
35
+ ".stylelintrc.mjs",
36
+ ".next/types/**/*.ts"
37
],
38
"exclude": ["node_modules", ".next"]
39
}
0 commit comments