Skip to content

Commit

Permalink
No longer run JS files through TypeScript for improved bundling perfo…
Browse files Browse the repository at this point in the history
…rmance
  • Loading branch information
lukastaegert committed Jan 20, 2020
1 parent c4d0d9f commit 8d2e746
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions LICENSE.md
Expand Up @@ -396,7 +396,7 @@ Repository: Rich-Harris/locate-character
## magic-string
License: MIT
By: Rich Harris
Repository: git+https://github.com/rich-harris/magic-string.git
Repository: https://github.com/rich-harris/magic-string

> Copyright 2018 Rich Harris
>
Expand Down Expand Up @@ -632,7 +632,7 @@ Repository: https://github.com/tapjs/signal-exit.git
## sourcemap-codec
License: MIT
By: Rich Harris
Repository: git+https://github.com/Rich-Harris/sourcemap-codec.git
Repository: https://github.com/Rich-Harris/sourcemap-codec

> The MIT License
>
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.js
Expand Up @@ -66,7 +66,7 @@ const nodePlugins = [
conditionalFsEventsImport(),
string({ include: '**/*.md' }),
commonjs({ include: 'node_modules/**' }),
typescript({ include: '**/*.{ts,js}' })
typescript()
];

export default command => {
Expand Down Expand Up @@ -140,7 +140,7 @@ export default command => {
}
},
commonjs(),
typescript({ include: '**/*.{ts,js}' }),
typescript(),
terser({ module: true, output: { comments: 'some' } })
],
treeshake,
Expand Down

0 comments on commit 8d2e746

Please sign in to comment.