@tsofist/web-buddy 2.0.0-next.1 → 2.0.0-next.2

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.
@@ -12,6 +12,7 @@ https://eslint.vuejs.org/rules/script-indent
12
12
 
13
13
  */
14
14
  export const WebBuddyESLintTypeScriptRules = {
15
+ '@typescript-eslint/no-empty-object-type': 'off', // harmful
15
16
  '@typescript-eslint/consistent-indexed-object-style': 'off', // harmful
16
17
  '@typescript-eslint/no-inferrable-types': 'off', // harmful
17
18
  '@typescript-eslint/consistent-type-definitions': ['error', 'type'],
@@ -13,7 +13,6 @@
13
13
  "noUnusedParameters": true,
14
14
  "resolveJsonModule": true,
15
15
  "strict": true,
16
- "useDefineForClassFields": true,
17
- "verbatimModuleSyntax": true
16
+ "useDefineForClassFields": true
18
17
  }
19
18
  }
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "extends": "./config.base.json",
3
3
  "compilerOptions": {
4
- "isolatedModules": true
4
+ "isolatedModules": true,
5
+ "verbatimModuleSyntax": false
5
6
  },
6
7
  "vueCompilerOptions": {
7
- "strictTemplates": true,
8
- "allowImplicitTemplateReturnType": false
8
+ "allowImplicitTemplateReturnType": false,
9
+ "strictTemplates": true
9
10
  }
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsofist/web-buddy",
3
- "version": "2.0.0-next.1",
3
+ "version": "2.0.0-next.2",
4
4
  "description": "Configuration basics for Linters, TypeScript, Semantic Release and others",
5
5
  "type": "module",
6
6
  "author": "Andrew Berdnikov <tsofistgudmen@gmail.com>",