From 9b97b04ad10f635846fa1e9a2b55765eb394c04e Mon Sep 17 00:00:00 2001 From: Tben Date: Sun, 30 Jul 2023 00:39:54 +0100 Subject: [PATCH] Update README.md --- .gitignore | 3 ++- package.json | 2 +- tsconfig.json | 13 ------------- 3 files changed, 3 insertions(+), 15 deletions(-) delete mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore index 9ee8c6e..68c2f30 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ # Ignore npm modules and src folder node_modules -src \ No newline at end of file +src +tsconfig.json \ No newline at end of file diff --git a/package.json b/package.json index c4d321d..0ffabc3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lessc-watcher", - "version": "1.0.9", + "version": "1.1.0", "description": "A minimal package to watch less files and compile them to css", "main": "dist/index.js", "bin": { diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 1479c8c..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "compilerOptions": { - "target": "es2016", - "module": "commonjs", - "rootDir": "./src", - "outDir": "./dist", - "removeComments": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "strict": true, - "skipLibCheck": true - } -}