tsconfig.json 579 Bytes
Newer Older
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
{
    "compilerOptions": {
        "target": "esnext",
        "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"
    ]
}