forked from hyrious/esbuild-plugin-commonjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-type.ts
36 lines (32 loc) · 948 Bytes
/
build-type.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { rollup } from "rollup";
import dts from "rollup-plugin-dts";
import ts from "typescript";
import { peerDependencies } from "./package.json";
import { compilerOptions } from "./tsconfig.json";
const start = Date.now();
const bundle = await rollup({
input: "./index.ts",
output: { file: "index.d.ts" },
plugins: [
dts({
compilerOptions: {
...ts.parseJsonConfigFileContent({ compilerOptions }, ts.sys, ".").options,
declaration: true,
noEmit: false,
emitDeclarationOnly: true,
noEmitOnError: true,
checkJs: false,
declarationMap: false,
skipLibCheck: true,
preserveSymlinks: false,
},
}),
],
external: Object.keys(peerDependencies),
});
const result = await bundle.write({
dir: ".",
format: "esm",
exports: "named",
});
console.log(`Built ${result.output.map(e => e.fileName).join(", ")} in ${Math.floor(Date.now() - start)}ms`);