aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: f33e7c17d66b4b8784a5a84cbe43f2969d5d5c53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "compilerOptions": {
    "outDir": "./dist",
    "allowJs": true,
    "target": "es5",
    "lib": ["DOM", "DOM.Iterable", "ES2021.String"],
    "strict": true,
    "strictNullChecks": false, //document.getElementBy
    "downlevelIteration": true,
    "resolveJsonModule": true,
    "esModuleInterop": true
  },
  "include": ["./webAO/**/*"]
}