- previously the `allImportedFiles` Set was _basically_ used to skip any files that were imported by other plugins
- it only filtered out on `importer` (not `importee`)
- this is a bit of a problem though, as other plugins that create JS code, or `allowJs` JS code, or heck, even regular JS code that Rollup processes without plugins, may actually import TS files
- and Rollup's plugin system is designed to handle that scenario, so rpt2 actually _should_ resolve those files
- notably, rpt2 already _transforms_ those files, it just didn't resolve them
- which is why using `@rollup/plugin-node-resolve` with a `.ts` extension solved this as a workaround
- the file would be resolved by `node-resolve` then actually transformed by rpt2
- but rpt2 should resolve TS files itself, `node-resolve` shouldn't be necessary
- this caused the issue that extensionless imports from such files wouldn't get resolved to TS files and may cause Rollup to error
- in particular, this popped up with extensionless imports of TS files from Svelte files
- `resolveId` is actually the last remaining place where `allImportedFiles` was used
- so after removing it from here, we can just remove it entirely
- which should be a small optimization
- for reference:
- `allImportedFiles` would be any `include`d files as well as TS files that have been transformed (at this point in the build) and their references
- this is a pretty gigantic list as is, so I'm actually not sure that removing this is actually that big of a de-opt
- and it only affects mixed TS / non-TS codebases too
- this seems to have been added in b0a0ecb5ee8752a1e60962036beb52e9f5dcfff9, but that commit doesn't actually seem to fix the issue it references
- see my root cause analyses in the issues
rollup-plugin-typescript2
Rollup plugin for typescript with compiler errors.
This is a rewrite of original rollup-plugin-typescript, starting and borrowing from this fork.
This version is somewhat slower than original, but it will print out typescript syntactic and semantic diagnostic messages (the main reason for using typescript after all).
Installation
# with npm
npm install rollup-plugin-typescript2 typescript tslib --save-dev
# with yarn
yarn add rollup-plugin-typescript2 typescript tslib --dev
Usage
// rollup.config.js
import typescript from 'rollup-plugin-typescript2';
export default {
input: './main.ts',
plugins: [
typescript(/*{ plugin options }*/)
]
}
The plugin inherits all compiler options and file lists from your tsconfig.json file. If your tsconfig has another name or another relative path from the root directory, see tsconfigDefaults, tsconfig and tsconfigOverride options below. This also allows for passing in different tsconfig files depending on your build target.
Some compiler options are forced
noEmitHelpers: falseimportHelpers: truenoResolve: falsenoEmit: false (Rollup controls emit)noEmitOnError: false (Rollup controls emit. See #254 and theabortOnErrorplugin option below)inlineSourceMap: false (see #71)outDir:./placeholderin cache root, see #83 and Microsoft/TypeScript#24715declarationDir: Rollup'soutput.fileoroutput.dir(only ifuseTsconfigDeclarationDiris false in the plugin options)moduleResolution:node(classicis deprecated. It also breaks this plugin, see #12 and #14)allowNonTsExtensions: true to let other plugins on the chain generate typescript, update plugin's include filter to pick them up (see #111)
Some compiler options have more than one compatible value.
module: defaults toES2015, other valid value isESNext(required for dynamic imports, see #54).
Some options need additional configuration on plugin side
allowJs: lets typescript process js files as well, if you use it, modify plugin'sincludeoption to add"*.js+(|x)", "**/*.js+(|x)"(might want to exclude node_modules, it will slow down the build significantly).
Compatibility
@rollup/plugin-node-resolve
Must be before rollup-plugin-typescript2 in the plugin list, especially when browser: true option is used, see #66.
@rollup/plugin-commonjs
See explanation for rollupCommonJSResolveHack option below.
@rollup/plugin-babel
This plugin transpiles code, but doesn't change file extensions. @rollup/plugin-babel only looks at code with these extensions by default: .js,.jsx,.es6,.es,.mjs. To workaround this, add .ts and .tsx to its list of extensions.
// ...
import { DEFAULT_EXTENSIONS } from '@babel/core';
// ...
babel({
extensions: [
...DEFAULT_EXTENSIONS,
'.ts',
'.tsx'
]
}),
// ...
See #108
Plugin options
-
cwd:stringThe current work directory, default
process.cwd(). -
tsconfigDefaults:{}The object passed as
tsconfigDefaultswill be merged with loadedtsconfig.json. Final config passed to typescript will be the result of values intsconfigDefaultsreplaced by values in loadedtsconfig.json, replaced by values intsconfigOverrideand then replaced by hardcompilerOptionsoverrides on top of that (see above).For simplicity and other tools' sake, try to minimize usage of defaults and overrides and keep everything in
tsconfig.jsonfile (tsconfigs can themselves be chained, so save some turtles).let defaults = { compilerOptions: { declaration: true } }; let override = { compilerOptions: { declaration: false } }; // ... plugins: [ typescript({ tsconfigDefaults: defaults, tsconfig: "tsconfig.json", tsconfigOverride: override }) ]This is a deep merge (objects are merged, arrays are merged by index, primitives are replaced, etc), increase
verbosityto 3 and look forparsed tsconfigif you get something unexpected. -
tsconfig:undefinedPath to
tsconfig.json. Set this if your tsconfig has another name or relative location from the project directory. By default will try to load./tsconfig.json, but will not fail if file is missing unless the value is set explicitly. -
tsconfigOverride:{}See
tsconfigDefaults. -
check: trueSet to false to avoid doing any diagnostic checks on the code.
-
verbosity: 1- 0 -- Error
- 1 -- Warning
- 2 -- Info
- 3 -- Debug
-
clean: falseSet to true for clean build (wipes out cache on every build).
-
cacheRoot:node_modules/.cache/rollup-plugin-typescript2Path to cache. Defaults to a folder in node_modules.
-
include:[ "*.ts+(|x)", "**/*.ts+(|x)" ]By default passes all .ts files through typescript compiler.
-
exclude:[ "*.d.ts", "**/*.d.ts" ]But excludes type definitions.
-
abortOnError: trueBail out on first syntactic or semantic error. In some cases setting this to false will result in exception in rollup itself (for example for unresolvable imports).
-
rollupCommonJSResolveHack: falseOn windows typescript resolver favors POSIX path, while commonjs plugin (and maybe others?) uses native path as module id. This can result in
namedExportsbeing ignored if rollup happened to use typescript's resolution. Set to true to pass resolved module path throughresolve()to match up withrollup-plugin-commonjs.rollup-plugin-commonjsfixed this in10.1.0, so projects using this option who update to new version will be broken again.This also works around the similar bug affecting code splitting (see rollup/rollup#3094).
-
objectHashIgnoreUnknownHack: falseThe plugin uses rollup config as part of cache key.
object-hashis used to generate a hash, but it can have trouble with some uncommon types of elements. Setting this option to true will makeobject-hashignore unknowns, at the cost of not invalidating the cache if ignored elements are changed. Only enable this if you need it (Error: Unknown object type "xxx"for example) and make sure to run withclean: trueonce in a while and definitely before a release. (See #105 and #203) -
useTsconfigDeclarationDir: falseIf true, declaration files will be emitted in the directory given in the tsconfig. If false, the declaration files will be placed inside the destination directory given in the Rollup configuration.
Set to false if any other rollup plugins need access to declaration files.
-
typescript: peerDependencyIf you'd like to use a different version of TS than the peerDependency, you can import a different TypeScript module and pass it in as
typescript: require("path/to/other/typescript"). Must be TS 2.0+, things might break if transpiler interfaces changed enough from what the plugin was built against. -
transformers:undefinedexperimental, typescript 2.4.1+
Transformers will likely be available in tsconfig eventually, so this is not a stable interface, see Microsoft/TypeScript#14419.
For example, integrating kimamula/ts-transformer-keys:
const keysTransformer = require('ts-transformer-keys/transformer').default; const transformer = (service) => ({ before: [ keysTransformer(service.getProgram()) ], after: [] }); // ... plugins: [ typescript({ transformers: [transformer] }) ]
Declarations
This plugin respects declaration: true in your tsconfig.json file. When set, it will emit *.d.ts files for your bundle.
The resulting file(s) can then be used with the types property in your package.json file as described here.
By default, the declaration files will be located in the same directory as the generated Rollup bundle. If you want to override this behavior and instead use the declarationDir set useTsconfigDeclarationDir to true in the plugin options.
The above also applies to declarationMap: true and *.d.ts.map files for your bundle.
This plugin also respects emitDeclarationOnly: true and will only emit declarations (and declaration maps, if enabled) if set in your tsconfig.json.
If you use emitDeclarationOnly, you will need another plugin to compile any TypeScript sources, such as @rollup/plugin-babel, rollup-plugin-esbuild, rollup-plugin-swc, etc.
When composing Rollup plugins this way, rollup-plugin-typescript2 will perform type-checking and declaration generation, while another plugin performs the TypeScript to JavaScript compilation.
Some scenarios where this can be particularly useful: you want to use Babel plugins on TypeScript source, or you want declarations and type-checking for your Vite builds (NOTE: this space has not been fully explored yet).
Watch mode
The way typescript handles type-only imports and ambient types effectively hides them from rollup watch, because import statements are not generated and changing them doesn't trigger a rebuild.
Otherwise the plugin should work in watch mode. Make sure to run a normal build after watch session to catch any type errors.
Requirements
TypeScript 2.4+
Rollup 1.26.3+
Node 6.4.0+ (basic es6 support)
Reporting bugs and Contributing
See CONTRIBUTING.md