Skip to content

Commit

Permalink
fix: drop custom d.ts files for web package
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Jan 10, 2025
1 parent 2a5eefc commit 53f1bab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 18 deletions.
6 changes: 3 additions & 3 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"declaration": true,
"type": "module",
"main": "./index.cjs",
"types": "./types/index.d.ts",
"types": "./lib/entry-production.d.ts",
"exports": {
".": {
"production": {
Expand All @@ -14,12 +14,12 @@
},
"import": "./dist/tolgee-web.development.esm.js",
"require": "./index.cjs",
"types": "./types/index.d.ts"
"types": "./lib/entry-production.d.ts"
},
"./tools": {
"import": "./dist/tolgee-in-context-tools.esm.js",
"require": "./dist/tolgee-in-context-tools.umd.cjs",
"types": "./types/tools.d.ts"
"types": "./lib/entry-tools.d.ts"
},
"./package.json": "./package.json"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/web/tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"internal": true,
"main": "../dist/tolgee-in-context-tools.umd.cjs",
"type": "module",
"types": "../types/tools.d.ts",
"types": "../lib/entry-tools.d.ts",
"exports": {
".": {
"import": "./../dist/tolgee-in-context-tools.esm.js",
"require": "./../dist/tolgee-in-context-tools.umd.cjs",
"types": "./../types/tools.d.ts"
"types": "./../lib/entry-tools.d.ts"
},
"./package.json": "./package.json"
}
Expand Down
6 changes: 0 additions & 6 deletions packages/web/types/index.d.ts

This file was deleted.

7 changes: 0 additions & 7 deletions packages/web/types/tools.d.ts

This file was deleted.

0 comments on commit 53f1bab

Please sign in to comment.