hydrogen-web/.ts-eslintrc.js

22 lines
478 B
JavaScript
Raw Normal View History

module.exports = {
root: true,
env: {
"browser": true,
"es6": true
},
extends: [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
],
parser: '@typescript-eslint/parser',
parserOptions: {
"ecmaVersion": 2020,
"sourceType": "module",
"project": "./tsconfig.json"
},
plugins: [
'@typescript-eslint',
],
rules: {}
};