1234567891011121314151617181920212223242526 |
- {
- "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"
- ]
- }
|