Skip to content

Commit

Permalink
nodejsに対応
Browse files Browse the repository at this point in the history
  • Loading branch information
ikasoba committed Nov 10, 2023
1 parent 28e0257 commit 775aa14
Show file tree
Hide file tree
Showing 5 changed files with 900 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.dist/
node_modules/
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src/
test/
.vscode/
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"type": "module",
"name": "@ikasoba000/valid-ts",
"main": "./.dist/mod.js",
"types": "./.dist/mod.d.ts",
"scripts": {
"build": "tsup-node mod.ts --treeshake --minify --dts --format esm -d .dist",
"prepare": "npm run build"
},
"devDependencies": {
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}
Loading

0 comments on commit 775aa14

Please sign in to comment.