Skip to content

Commit

Permalink
type: fix type error & update ts config..
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Oct 14, 2023
1 parent 305cc2a commit b8254aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"typescript": "^5.1.3"
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@kkt/resolve-fallback": "^7.4.17",
"@testing-library/jest-dom": "^6.0.0",
Expand Down
1 change: 1 addition & 0 deletions core/src/utils/getStyleLoaders.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { RuleSetUseItem, LoaderContext } from 'webpack';
// @ts-ignore
import postcssNormalize from 'postcss-normalize';
// @ts-ignore
import postcssFlexbugsFixes from 'postcss-flexbugs-fixes';
Expand Down
4 changes: 2 additions & 2 deletions core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "Node16",
"target": "ES5",
"strict": true,
"declaration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"moduleResolution": "node16",
"skipLibCheck": true,
"noImplicitAny": true,
"outDir": "lib",
Expand Down

0 comments on commit b8254aa

Please sign in to comment.