diff --git a/node_modules/style-mod/package.json b/node_modules/style-mod/package.json index 24b2706..d8b1c78 100644 --- a/node_modules/style-mod/package.json +++ b/node_modules/style-mod/package.json @@ -5,8 +5,14 @@ "main": "dist/style-mod.cjs", "type": "module", "exports": { - "import": "./src/style-mod.js", - "require": "./dist/style-mod.cjs" + "import": { + "types": "./src/style-mod.d.ts", + "default": "./src/style-mod.js" + }, + "require": { + "types": "./src/style-mod.d.cts", + "default": "./dist/style-mod.cjs" + } }, "module": "src/style-mod.js", "types": "src/style-mod.d.ts", diff --git a/node_modules/style-mod/src/style-mod.d.cts b/node_modules/style-mod/src/style-mod.d.cts new file mode 100644 index 0000000..6c79d85 --- /dev/null +++ b/node_modules/style-mod/src/style-mod.d.cts @@ -0,0 +1 @@ +export type * from './style-mod.js' with { 'resolution-mode': 'require' };