https://github.com/andrewbranch/example-webpack-ts-extensions
https://github.com/webpack/webpack/issues/17288
https://github.com/andrewbranch/example-webpack-ts-extensions
Last synced: 5 months ago
JSON representation
https://github.com/webpack/webpack/issues/17288
- Host: GitHub
- URL: https://github.com/andrewbranch/example-webpack-ts-extensions
- Owner: andrewbranch
- Created: 2023-05-30T22:33:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-30T22:45:40.000Z (over 2 years ago)
- Last Synced: 2025-02-25T09:18:53.494Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Repro for https://github.com/webpack/webpack/issues/17288
## Instructions
```
npm install
npm run build
npm start
```
## Expected behavior
Log from each line is the same (probably `{ default: 'default' }`)
## Actual behavior
```
Import CJS default from mjs: { default: 'default' }
Import CJS default from mts: default
```