aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: fdcfcf491f2e9a9b511aef375d56a2dd2661bb6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "env": {
    "browser": true,
    "es6": true,
    "node": true
  },
  "extends": [
    "@valentineus/eslint-config/typescript"
  ],
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "ecmaVersion": 2020,
    "project": "tsconfig.json",
    "sourceType": "module",
    "tsconfigRootDir": "."
  }
}