@tsslint/cli 1.0.18 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -105,7 +105,7 @@ const glob = require("glob");
105
105
  languageService,
106
106
  languageServiceHost,
107
107
  typescript: ts,
108
- tsconfig,
108
+ tsconfig: ts.server.toNormalizedPath(tsconfig),
109
109
  }, tsslintConfig, false);
110
110
  let hasFix = false;
111
111
  for (const fileName of parsed.fileNames) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsslint/cli",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "tsslint": "./bin/tsslint.js"
@@ -16,12 +16,12 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@clack/prompts": "^0.7.0",
19
- "@tsslint/config": "1.0.18",
20
- "@tsslint/core": "1.0.18",
19
+ "@tsslint/config": "1.0.20",
20
+ "@tsslint/core": "1.0.20",
21
21
  "glob": "^10.4.1"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "typescript": "*"
25
25
  },
26
- "gitHead": "95545c63940a9b57651c785cf4d730d6c3d22b99"
26
+ "gitHead": "b14e3888b843e774784c668b55d6703fbbad11d8"
27
27
  }