chore: prepare package for npm publish

Add LICENSE (MIT), README, .npmignore. Update package.json metadata
and tsconfig module resolution.
This commit is contained in:
熊熊熊子路
2026-05-08 15:56:35 +08:00
parent 76384bb9da
commit a7c7143fe1
6 changed files with 575 additions and 11 deletions
+10 -7
View File
@@ -1,12 +1,15 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist"
"skipLibCheck": true
},
"include": ["src"]
}
"include":["src"]
}