@kodex-data/prototypes
Version:
A library of TypeScript prototypes that extend built-in types in JavaScript, providing additional functionality to make development easier and more efficient. This library includes prototypes for working with big numbers, Ethereum Virtual Machine (EVM) fu
33 lines • 821 B
JSON
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"declaration": true,
"declarationDir": "./types",
"emitDeclarationOnly": false,
"emitDecoratorMetadata": false,
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"module": "es6",
"moduleResolution": "node",
"outDir": "./dist",
"resolveJsonModule": false,
"rootDir": "source",
"noImplicitAny": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"target": "es6"
},
"exclude": [
"./types",
"./tests",
"./dist",
"./*.js",
"./*.d.ts"
],
"include": [
"source"
]
}