1
mirror of https://github.com/jakejarvis/rdapper.git synced 2025-10-18 20:14:27 -04:00

Update project metadata and TypeScript configuration: refine repository details in package.json, simplify tsconfig.build.json, and adjust tsconfig.json for cleaner output settings.

This commit is contained in:
2025-09-24 19:55:48 -04:00
parent aa8d089b6d
commit e1e6d0243a
3 changed files with 5 additions and 10 deletions

View File

@@ -3,7 +3,10 @@
"version": "0.0.0-beta.1",
"license": "MIT",
"description": "🎩 RDAP/WHOIS fetcher, parser, and normalizer for Node",
"repository": "jakejarvis/rdapper",
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/rdapper.git"
},
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",

View File

@@ -1,12 +1,6 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "src/**/*.test.ts", "src/**/__tests__/**"]
}

View File

@@ -11,9 +11,7 @@
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"declarationMap": true,
"sourceMap": true
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]