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

Commit

Permalink
rename type file
Browse files Browse the repository at this point in the history
  • Loading branch information
grant0417 committed Feb 15, 2022
1 parent 5bbc379 commit 96b0619
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@
"type": "module",
"types": "./build/index.d.ts",
"files": [
"build/**/*.js",
"build/**/*.d.ts"
"./build/**/*.js",
"./build/**/*.d.ts",
"./build/index.js",
"./build/index.d.ts"
],
"scripts": {
"test": "tsc --noEmit",
"build": "tsc --build"
"build": "tsc --build",
"clean": "rm -rf build"
},
"repository": {
"type": "git",
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"declaration": true
},
"exclude": ["node_modules/"],
"include": ["./src/**/*", "src/types/index.d.ts"]
"include": ["./src/**/*", "./src/index.ts"]
}

0 comments on commit 96b0619

Please sign in to comment.