qmwts 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.ts ADDED
@@ -0,0 +1,4 @@
1
+ export function add(a: number) {
2
+ console.log(a)
3
+ }
4
+ // https://www.jianshu.com/p/8fa2c50720e4
package/package.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "qmwts",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.ts",
6
+ "scripts": {
7
+ "build": "tsc",
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "author": "qmw",
11
+ "license": "ISC",
12
+ "devDependencies": {
13
+ "typescript": "^5.0.4"
14
+ }
15
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES5",
4
+ "module": "commonjs",
5
+ "declaration": true,
6
+ "outDir": "./dist",
7
+ "strict": true
8
+ }
9
+ }