Compare commits

..

3 Commits

3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh #!/bin/sh
. "$(dirname "$0")/_/husky.sh" . "$(dirname "$0")/_/husky.sh"
npx lint-staged npx lint-staged

View File

@@ -5,7 +5,8 @@
"main": "dist/index.js", "main": "dist/index.js",
"scripts": { "scripts": {
"start": "tsc -w", "start": "tsc -w",
"build": "rm -rf dist && tsc" "build": "rm -rf dist && tsc",
"prepare": "husky install"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -13,7 +13,6 @@
"skipLibCheck": true, "skipLibCheck": true,
"allowJs": true, "allowJs": true,
"declaration": true, "declaration": true,
"emitDeclarationOnly": false
}, },
"include": ["src/**/*"] "include": ["src/**/*"]
} }