aboutsummaryrefslogtreecommitdiff
path: root/editors/code/tsconfig.json
blob: 1ea433961f14daf08ce2da9cea12eebc907cf36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
    "compilerOptions": {
        "module": "commonjs",
        "target": "es2018",
        "outDir": "out",
        "lib": [
            "es2019"
        ],
        "sourceMap": true,
        "rootDir": "src",
        "strict": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "noImplicitReturns": true,
        "noFallthroughCasesInSwitch": true,
        "newLine": "LF",
        "esModuleInterop": true,
    },
    "exclude": [
        "node_modules"
    ]
}