Optisol's typescript ESLint config.
"postinstall": "cp node_modules/eslint-config-optisol-typescript/tsconfig.eslint.json $INIT_CWD"
Before installing this package, you need to add this postinstall script to add the tsconfig.eslint.json file to the root of your project:
npm install eslint-config-optisol-typescript eslint prettier --D
After installing, update your project's .eslintrc<.js|json>
file to import the rule sets you want:
{
"extends" : [
"eslint-config-optisol-typescript"
]
}
Read the ESlint config docs for more information.