summaryrefslogtreecommitdiff
path: root/lib/ts/tsconfig.json
blob: 97fa2258e194637dd4be34038788cec360ee0274 (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
25
26
27
28
29
30
31
{
    "compilerOptions": {
        "allowJs": false,
        "alwaysStrict": true,
        "baseUrl": ".",
        "declaration": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "module": "commonjs",
        "moduleResolution": "node",
        "noImplicitThis": true,
        "noUnusedLocals": true,
        "preserveConstEnums": true,
        "removeComments": true,
        "strictFunctionTypes": true,
        "strictNullChecks": true,
        "target": "es6",
        "paths": {
            "*": [
                "*",
                "test/",
                "test/gen-js/*"

            ]
        },
    },
    "exclude": [
        "./test/gen-nodejs/",
        "./test/build/",
    ]
}