Skip to content

Commit cf85aa9

Browse files
committed
config
1 parent 67f502e commit cf85aa9

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": "MIT",
77
"type": "module",
88
"scripts": {
9-
"build": "npm run format && npm run webpack",
9+
"build": "npm run compile && npm run format && npm run webpack",
1010
"ci:test": "npm run test",
1111
"compile": "tsc -b",
1212
"dev": "cross-env vite",

tsconfig.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
"jsx": "react",
1111
"moduleResolution": "Node16",
1212
"allowSyntheticDefaultImports": true,
13-
"esModuleInterop": true
14-
}
13+
"esModuleInterop": true,
14+
"skipLibCheck": true,
15+
},
16+
"include": ["src/**/*"],
17+
"exclude": ["node_modules"],
1518
}

0 commit comments

Comments
 (0)