summaryrefslogtreecommitdiff
path: root/big-integer/tsconfig.json
blob: 62636e8e26e13ed5d56595fe42b5bbc71bfa591d (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
{
    "compilerOptions": {
        "module": "commonjs",
        "lib": [
            "es6"
        ],
        "noImplicitAny": true,
        "noImplicitThis": true,
        "strictNullChecks": false,
        "baseUrl": "./",
        "moduleResolution": "node",
        "allowJs": true,
        "typeRoots": [
            "./"
        ],
        "types": [
            "node"
        ],
        "forceConsistentCasingInFileNames": true
    },
    "files": [
        "BigInteger.d.ts",
        "spec/tsDefinitions.ts"
    ]
}