Skip to content

antross/rollup-plugin-typescript2-repro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To repro:

  1. Run npm i to install dependencies
  2. Run npm run build to bundle the code
  3. Look at out/test/two.js

Expected:

import { one } from './one.js';

function two() {
    one();
    console.log('two');
}

export { two };

Actual:

function one() {
    console.log('one');
}

function two() {
    one();
    console.log('two');
}

export { two };

Note: Removing rollup-plugin-typescript2 from the plugins array eliminates the repro.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published