From e8c46502a4f6d1018321cf59fc34223cf10eb74e Mon Sep 17 00:00:00 2001 From: henry <48340699+imwh0im@users.noreply.github.com> Date: Wed, 2 Feb 2022 20:45:00 +0900 Subject: [PATCH] fix(deploy): ignore dependencies --- .npmignore | 1 - README.md | 2 +- tsconfig.json | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.npmignore b/.npmignore index 3fe5cfc..049e8dd 100644 --- a/.npmignore +++ b/.npmignore @@ -5,6 +5,5 @@ release.config.js .eslintrc.js package-lock.json .github/ -node_modules/ .prettierignore .prettierrc.js diff --git a/README.md b/README.md index 1a16ee1..3e5e525 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ wrapper for upbit API ```bash $ npm run lint # Only Check Lint $ npm run lint:fix # Fix to Lint Error - $ npm run foramt # Check prettier + $ npm run format # Check prettier ``` ### Available API List diff --git a/tsconfig.json b/tsconfig.json index 2a0eb25..354960d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "ES2021", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + "target": "ES2020", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ "module": "commonjs", /* Specify what module code is generated. */ "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */ "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */