UNPKG

hello-npm-tslint-rollup

Version:

Well that's a mouthfull. This package is a test package. It is supposed to let you know whether `package.json` file is in your current working directory `process.cwd()`. The name references the module bundler `rollup` and my own automation-script [tslint]

13 lines (11 loc) 255 B
import typescript from "@rollup/plugin-typescript"; export default { input: "./src/index.ts", output: { file: "./index.js", format: "cjs", }, plugins: [ typescript({ compilerOptions: { target: "ESNext", module: "ESNext" } }), ], };