mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
64 lines
1.0 KiB
JavaScript
64 lines
1.0 KiB
JavaScript
import resolve from "@rollup/plugin-node-resolve";
|
|
import commonjs from "@rollup/plugin-commonjs";
|
|
import replace from "rollup-plugin-re";
|
|
|
|
const pkg = require("./package.json");
|
|
|
|
export default {
|
|
input: "src/index.ts",
|
|
|
|
external: [
|
|
"fs",
|
|
"fs-extra",
|
|
"resolve",
|
|
"crypto",
|
|
"path",
|
|
"constants",
|
|
"stream",
|
|
"util",
|
|
"assert",
|
|
"os",
|
|
"@rollup/pluginutils",
|
|
],
|
|
|
|
plugins: [
|
|
replace
|
|
({
|
|
replaces:
|
|
{
|
|
"$RPT2_VERSION": pkg.version,
|
|
"$TS_VERSION_RANGE": pkg.peerDependencies.typescript,
|
|
},
|
|
}),
|
|
resolve({ jsnext: true, preferBuiltins: true, }),
|
|
commonjs
|
|
({
|
|
include: "node_modules/**",
|
|
}),
|
|
],
|
|
|
|
output: [
|
|
{
|
|
format: "cjs",
|
|
file: pkg.main,
|
|
sourcemap: true,
|
|
banner: "/* eslint-disable */",
|
|
exports: "auto",
|
|
},
|
|
{
|
|
format: "es",
|
|
file: pkg.module,
|
|
sourcemap: true,
|
|
banner: "/* eslint-disable */",
|
|
exports: "auto",
|
|
},
|
|
{
|
|
format: "es",
|
|
file: "build-self/" + pkg.module,
|
|
sourcemap: true,
|
|
banner: "/* eslint-disable */",
|
|
exports: "auto",
|
|
},
|
|
],
|
|
};
|