KeetaNetwork standard typescript ESLint config
$ npm install -SD @keetanetwork/eslint-config-typescript
// .eslint.config.mjs
import keetanetworkConfig from '@keetanetwork/eslint-config-typescript';
export default [
...keetanetworkConfig,
{
languageOptions: {
parserOptions: {
project: ['tsconfig.json', 'deployment/tsconfig.json']
}
}
}
];