@tsslint/typescript-plugin 0.0.12 → 0.0.13

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
@@ -125,7 +125,7 @@ function decorateLanguageService(ts, tsconfig, info) {
125
125
  }
126
126
  let configImportPath;
127
127
  try {
128
- configImportPath = require.resolve('@tsslint/config', { paths: [configFile] });
128
+ configImportPath = require.resolve('@tsslint/config/lib/watch', { paths: [path.dirname(configFile)] });
129
129
  }
130
130
  catch (err) {
131
131
  configFileDiagnostics = [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsslint/typescript-plugin",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "license": "MIT",
5
5
  "files": [
6
6
  "**/*.js",
@@ -12,10 +12,10 @@
12
12
  "directory": "packages/typescript-plugin"
13
13
  },
14
14
  "dependencies": {
15
- "@tsslint/core": "0.0.12"
15
+ "@tsslint/core": "0.0.13"
16
16
  },
17
17
  "devDependencies": {
18
- "@tsslint/config": "0.0.12"
18
+ "@tsslint/config": "0.0.13"
19
19
  },
20
- "gitHead": "f6737f340ad02a90054dbdc0514b5c253bb695e7"
20
+ "gitHead": "ebb2ecf9dadc0ebccd1859af973cb8fbbd07c83d"
21
21
  }