UNPKG

dnsweeper

Version:

Advanced CLI tool for DNS record risk analysis and cleanup. Features CSV import for Cloudflare/Route53, automated risk assessment, and parallel DNS validation.

39 lines 877 B
{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "node", "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "outDir": "./dist", "rootDir": "./src", "declaration": true, "declarationMap": true, "sourceMap": true, "removeComments": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, "resolveJsonModule": true, "allowImportingTsExtensions": false, "noEmit": false, "baseUrl": ".", "paths": { "@/*": ["src/*"], "@shared/*": ["../shared/*"], "@dnsweeper/*": ["../../src/*"] } }, "include": [ "src/**/*", "../shared/**/*" ], "exclude": [ "node_modules", "dist", "**/*.test.ts", "**/*.spec.ts" ] }