aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 91508ffedb4798916742f5aa9aa1659d4af78f45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "compilerOptions": {
    "outDir": "./dist",
    "allowJs": true,
    "target": "es2022",
    "lib": ["DOM", "ES2022"],
    "strict": true,
    "strictNullChecks": false, //document.getElementBy
    "resolveJsonModule": true,
    "esModuleInterop": true,
    "types": [ "node", "jest" ]
  },
  "include": ["./webAO/**/*"]
}