aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: eb472c98b976232cb1cce3d255ddf623595c1632 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "lib": ["DOM", "esnext", "esnext.array", "esnext.asynciterable", "esnext.symbol"],
        "module": "commonjs",
        "moduleResolution": "node",
        "strict": true,
        "noImplicitAny": false,
        "target": "ESNEXT"
    },
    "include": ["src/**/*.ts"]
}