africastalking-ts
Version:
Unofficial Typescript version of the Africa's Talking SDK
26 lines • 456 B
JavaScript
module.exports = {
env: {
es6: true,
node: true,
mocha: true,
},
extends: [
'airbnb-typescript/base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
project: './tsconfig.json',
},
plugins: [
'@typescript-eslint',
],
rules: {
'import/prefer-default-export': 'off',
},
};