aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 39aa95bae821a8ccd60c243dfeea34e6e5df58ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
    "compilerOptions": {
        "target": "ES2022",
        "downlevelIteration": true,
        "removeComments": true,
        "experimentalDecorators": true,
        "allowSyntheticDefaultImports": true,
        "moduleDetection": "auto",
        "useDefineForClassFields": false, // allowing this to be true breaks overriding of observable props in subclasses (see CollectionSubView)
        "strict": true,
        "jsx": "react",
        "allowJs": true,
        "sourceMap": true,
        "outDir": "dist",
        "lib": ["DOM", "es2022"],
        "typeRoots": ["./src/typings", "node_modules/@types", "./src/extensions/General"],
        "resolveJsonModule": true,
        "moduleResolution": "node"
    }
    // "exclude": [
    //   "node_modules",
    //   "static"
    // ],
}