@authereum/resolution
Version:
Domain Resolution for blockchain domains
34 lines (33 loc) • 891 B
JSON
{
"compilerOptions": {
"target": "es5",
"moduleResolution": "node",
"lib": ["es6", "dom"],
"outDir": "build",
"rootDir": "src",
"strict": false,
"esModuleInterop": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"stripInternal": true,
"strictNullChecks": true
},
"exclude": ["node_modules", "tmp", "**/*.test.ts", "build", "src/tests"],
"typedocOptions": {
"mode": "file",
"module": "commonjs",
"excludeExternals": true,
"excludePrivate": true,
"excludeNotExported": true,
"name": "Unstoppabledomains resolution library",
"inputFiles": [
"./src/Resolution.ts",
"./src/index.ts",
"./src/publicTypes.ts",
"./src/errors/configurationError.ts",
"./src/errors/resolutionError.ts"
]
}
}