1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-01 16:51:13 -05:00
denoland-deno/cli/tests/testdata/npm/registry/@denotest/file-dts-dmts-dcts/1.0.0/package.json
David Sherret 279030f2b8
fix(npm): improve declaration resolution for filename with different extensions (#19966)
postcss was importing `./index.js` from `./index.d.mts` where there also
existed a `./index.d.ts`.

Closes #19575
2023-07-28 11:24:22 -04:00

13 lines
No EOL
245 B
JSON

{
"name": "@denotest/dts-and-dmts-same-file",
"version": "1.0.0",
"exports": {
".": {
"import": "./main.mjs",
"require": "./main.js"
},
"./mjs": "./main.mjs",
"./cjs": "./main.cjs",
"./js": "./main.js"
}
}