ace-linters 1.3.3 → 1.3.4

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.
@@ -188494,6 +188494,8 @@ class TypescriptService extends base_service.BaseService {
188494
188494
  return ScriptKind.JS;
188495
188495
  case 'jsx':
188496
188496
  return ScriptKind.JSX;
188497
+ case 'json':
188498
+ return ScriptKind.JSON;
188497
188499
  default:
188498
188500
  return this.getCompilationSettings().allowJs ? ScriptKind.JS : ScriptKind.TS;
188499
188501
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ace-linters",
3
3
  "author": "Azat Alimov <mkslanc@gmail.com>",
4
- "version": "1.3.3",
4
+ "version": "1.3.4",
5
5
  "scripts": {
6
6
  "clean": "rimraf build",
7
7
  "prebuild": "node prebuild.js",