Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. module.exports = {
  2. parser: '@typescript-eslint/parser',
  3. env: {
  4. es6: true,
  5. node: true
  6. },
  7. plugins: ['@typescript-eslint'],
  8. extends: [
  9. 'plugin:@typescript-eslint/recommended',
  10. 'prettier/@typescript-eslint',
  11. 'standard'
  12. ],
  13. globals: {
  14. Atomics: 'readonly',
  15. SharedArrayBuffer: 'readonly'
  16. },
  17. parserOptions: {
  18. ecmaVersion: 2018,
  19. sourceType: 'module'
  20. },
  21. rules: {}
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement