We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unifiedjs
Learn more about funding links in repositories.
Report abuse
tsconfig.json
1 parent f07f413 commit bec44aaCopy full SHA for bec44aa
packages/remark-cli/tsconfig.json
@@ -1,4 +1,7 @@
1
{
2
"extends": "../../tsconfig.json",
3
- "include": ["*.js"]
+ "include": ["*.js"],
4
+ "compilerOptions": {
5
+ "resolveJsonModule": true
6
+ }
7
}
tsconfig.json
@@ -1,16 +1,12 @@
"include": ["script/**/*.js", "test/**/*.js"],
"compilerOptions": {
- "target": "ES2020",
- "lib": ["ES2020"],
- "module": "ES2020",
- "moduleResolution": "node",
8
- "resolveJsonModule": true,
9
- "allowJs": true,
+ "target": "es2021",
+ "lib": ["es2021"],
+ "module": "node16",
10
"checkJs": true,
11
"declaration": true,
12
"emitDeclarationOnly": true,
13
- "allowSyntheticDefaultImports": true,
14
"skipLibCheck": true,
15
"strict": true
16
0 commit comments