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 204fcae commit 817d084Copy full SHA for 817d084
boilerplates/pnpm-workspace/tsconfig.json
@@ -2,7 +2,10 @@
2
"compilerOptions": {
3
"target": "ES2020",
4
"module": "commonjs",
5
- "lib": ["ES2020", "DOM"],
+ "lib": [
6
+ "ES2020",
7
+ "DOM"
8
+ ],
9
"declaration": true,
10
"outDir": "./dist",
11
"strict": true,
@@ -17,12 +20,13 @@
17
20
"emitDecoratorMetadata": true,
18
21
"skipLibCheck": true,
19
22
"forceConsistentCasingInFileNames": true,
- "jsx": "react-jsx"
23
+ "jsx": "react-jsx",
24
+ "resolveJsonModule": true
25
},
26
"exclude": [
27
"node_modules",
28
"dist",
29
"**/*.test.*",
30
"**/*.spec.*"
31
]
-}
32
+}
0 commit comments