Skip to content

Commit

Permalink
Remove unused files
Browse files Browse the repository at this point in the history
  • Loading branch information
andrerpena committed May 1, 2022
1 parent 15340dd commit 97257fc
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ node_modules
demo/node_modules
/.vscode/
ts-build/
dist/
40 changes: 20 additions & 20 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ import typescript from "@rollup/plugin-typescript";
const packageJson = require("./package.json");

export default [
{
input: "src/index.ts",
output: [
{
file: packageJson.main,
format: "cjs",
sourcemap: true,
},
{
file: packageJson.module,
format: "esm",
sourcemap: true,
},
],
plugins: [
resolve(),
commonjs(),
typescript({ tsconfig: "./tsconfig.json" }),
],
}
{
input: "src/index.ts",
output: [
// {
// file: packageJson.main,
// format: "cjs",
// sourcemap: true,
// },
{
file: packageJson.module,
format: "esm",
sourcemap: true
}
],
plugins: [
resolve(),
commonjs(),
typescript({ tsconfig: "./tsconfig.json" })
]
}
];

0 comments on commit 97257fc

Please sign in to comment.