Skip to content

Commit

Permalink
chore: fix utils deps type
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklin committed Jul 3, 2024
1 parent eaa05e7 commit 997b1c6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions packages/web/styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@
},
"./unoconfig": "./uno.config.ts"
},
"main": "./index.ts",
"module": "./index.ts",
"files": [
"src",
"uno.config.ts"
],
"main": "./index.ts",
"module": "./index.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --stub",
Expand Down
12 changes: 6 additions & 6 deletions packages/web/styles/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"extends": "@celeris/tsconfig/tsconfig.base.json",
"compilerOptions": {
"target": "esnext",
"lib": [
"esnext",
"dom"
],
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"lib": [
"esnext",
"dom"
]
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
Expand Down
1 change: 1 addition & 0 deletions packages/web/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
},
"main": "./dist/index.cjs",
"module": "src/index.ts",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
Expand Down
12 changes: 6 additions & 6 deletions packages/web/utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
"extends": "@celeris/tsconfig/tsconfig.base.json",
"compilerOptions": {
"target": "esnext",
"lib": [
"esnext",
"dom"
],
"baseUrl": ".",
"module": "esnext",
"moduleResolution": "Node",
"strict": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"sourceMap": false,
"lib": [
"esnext",
"dom"
]
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
Expand Down

0 comments on commit 997b1c6

Please sign in to comment.