Skip to content
This repository has been archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
build: modify build config
Browse files Browse the repository at this point in the history
  • Loading branch information
piquark6046 committed Mar 28, 2024
1 parent 6e4636d commit a3a1820
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"type": "module",
"description": "",
"scripts": {
"build": "tsc --declaration",
"build": "tsc",
"exec": "tsx index.ts",
"lint": "tsc && eslint . --ext .ts"
},
"exports": {
Expand All @@ -18,6 +19,9 @@
"name": "PiQuark6046",
"url": "https://github.com/piquark6046"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.0",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "NodeNext",
"removeComments": true,
"removeComments": false,
"alwaysStrict": true,
"skipLibCheck": true
"skipLibCheck": true,
"declaration": true,
},
"include": [
"index.ts",
Expand Down

0 comments on commit a3a1820

Please sign in to comment.