We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67f502e commit cf85aa9Copy full SHA for cf85aa9
package.json
@@ -6,7 +6,7 @@
6
"license": "MIT",
7
"type": "module",
8
"scripts": {
9
- "build": "npm run format && npm run webpack",
+ "build": "npm run compile && npm run format && npm run webpack",
10
"ci:test": "npm run test",
11
"compile": "tsc -b",
12
"dev": "cross-env vite",
tsconfig.json
@@ -10,6 +10,9 @@
"jsx": "react",
"moduleResolution": "Node16",
"allowSyntheticDefaultImports": true,
13
- "esModuleInterop": true
14
- }
+ "esModuleInterop": true,
+ "skipLibCheck": true,
15
+ },
16
+ "include": ["src/**/*"],
17
+ "exclude": ["node_modules"],
18
}
0 commit comments