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

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
LewdHuTao committed May 29, 2024
1 parent ebe3929 commit ccad472
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 23 deletions.
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test
src
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "llyrics",
"version": "1.1.3-rc",
"version": "1.1.4-rc",
"description": "A simple package to fetch lyrics from Genius API",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
42 changes: 22 additions & 20 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist/src",
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
"target": "ES2022",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist/",
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src"
"src"
],
"exclude": [
"node_modules",
"test",
"tsdoc.config.js"
"node_modules",
"test",
"tsdoc.config.js"
],
"files": [
"src/index.ts"
]
}

}

0 comments on commit ccad472

Please sign in to comment.