aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/tsconfig.json
blob: bc6f4be6b0e17c06cf374f0098bf00f07e7edf75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
    "compilerOptions": {
        "esModuleInterop": true,
        "target": "ESNext",
        "module": "ESNext",
        "moduleResolution": "node",
        "strict": true,
        "lib": [
            "ESNext",
            "DOM"
        ],
        "noImplicitAny": true ,
        "strictNullChecks": true ,
        "strictFunctionTypes": true ,
        "strictBindCallApply": true ,
        "strictPropertyInitialization": true ,
        "noImplicitThis": true ,
        "alwaysStrict": true ,
        "downlevelIteration": true,
        "outDir": ".",
    },
    "include": [
      "./edit-data.ts"
    ],
    "exclude": [
      "./*.js",
    ]
}