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 - } -}