diff --git a/package.json b/package.json index b0a48b8..9f65264 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "connection-string", - "version": "2.7.1", + "version": "2.7.2", "description": "Advanced URL Connection String parser + generator.", "main": "src/index.js", "typings": "src/index.d.ts", @@ -39,8 +39,8 @@ "npm": ">=2.14.2" }, "devDependencies": { - "coveralls": "3.0.4", - "eslint": "6.0.1", + "coveralls": "3.0.6", + "eslint": "6.2.1", "istanbul": "0.4.5", "jasmine-node": "3.0.0" } diff --git a/test/tsconfig.json b/test/tsconfig.json new file mode 100644 index 0000000..27adb09 --- /dev/null +++ b/test/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "declaration": true, + "declarationDir": "./dist", + "esModuleInterop": true, + "module": "commonjs", + "strict": true, + "noUnusedLocals": true, + "outDir": "./dist", + "target": "es5" + }, + "include": [ + "examples/*.ts", + "src/*.ts", + "test/*.ts" + ], + "exclude": [ + "node_modules" + ] +}