Skip to content

Commit

Permalink
Add declaration maps
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Feb 12, 2024
1 parent 49fd094 commit c03e16c
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,7 +1,9 @@
.DS_Store
coverage/
node_modules/
*.d.cts.map
*.d.cts
*.d.ts.map
*.d.ts
/public/
!/packages/mdx/lib/types.d.ts
Expand Down
1 change: 1 addition & 0 deletions packages/esbuild/package.json
Expand Up @@ -33,6 +33,7 @@
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
4 changes: 2 additions & 2 deletions packages/loader/package.json
Expand Up @@ -39,8 +39,8 @@
"files": [
"lib/",
"index.cjs",
"index.d.cts",
"index.d.ts"
"index.d.cts.map",
"index.d.cts"
],
"dependencies": {
"@mdx-js/mdx": "^3.0.0",
Expand Down
1 change: 1 addition & 0 deletions packages/mdx/package.json
Expand Up @@ -38,6 +38,7 @@
},
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions packages/node-loader/package.json
Expand Up @@ -38,6 +38,7 @@
},
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions packages/preact/package.json
Expand Up @@ -36,6 +36,7 @@
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions packages/react/package.json
Expand Up @@ -35,6 +35,7 @@
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions packages/remark-mdx/package.json
Expand Up @@ -36,6 +36,7 @@
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions packages/rollup/package.json
Expand Up @@ -33,6 +33,7 @@
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions packages/vue/package.json
Expand Up @@ -31,6 +31,7 @@
"exports": "./index.js",
"files": [
"lib/",
"index.d.ts.map",
"index.d.ts",
"index.js"
],
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Expand Up @@ -3,6 +3,7 @@
"checkJs": true,
"customConditions": ["development"],
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"exactOptionalPropertyTypes": true,
"jsx": "preserve",
Expand Down

0 comments on commit c03e16c

Please sign in to comment.