aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 5c519e855916840642086fb998e3e7a08edd81af (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
{
    "compilerOptions": {
        "baseUrl": ".",
        "declaration": true,
        "declarationMap": true,
        "esModuleInterop": true,
        "lib": [
            "es2015"
        ],
        "module": "commonjs",
        "newLine": "lf",
        "outDir": "./dist",
        "removeComments": false,
        "rootDir": "./src",
        "sourceMap": true,
        "strict": true,
        "target": "es5"
    },
    "exclude": [
        "dist",
        "node_modules",
        "test"
    ]
}