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