UNPKG

@elastic/ems-client

Version:

JavaScript client library for the Elastic Maps Service

26 lines (23 loc) 499 B
// @ts-check import eslint from '@eslint/js'; import tseslint from 'typescript-eslint'; import globals from 'globals'; export default tseslint.config( eslint.configs.recommended, ...tseslint.configs.recommended, { ignores: ["target","*.config.js",".buildkite"] }, { files: ['**/*.{ts,tsx,mts,cts}'], rules: { 'no-undef': 'off', '@typescript-eslint/ban-types': 'off' }, "languageOptions": { "globals": { ...globals.node } } }, );