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 (12 loc) • 320 B
JavaScript
/* eslint-env node */
/* Reference: https://typescript-eslint.io/getting-started/ */
module.exports = {
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
root: true,
env: {
browser: true,
node: true,
},
};