@tsofist/web-buddy 1.19.0 → 1.20.1

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.
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@tsofist/web-buddy",
3
- "version": "1.19.0",
3
+ "version": "1.20.1",
4
4
  "description": "Configuration basics for Linters, TypeScript, Semantic Release and others",
5
5
  "author": "Andrew Berdnikov <tsofistgudmen@gmail.com>",
6
6
  "license": "MIT",
7
+ "homepage": "https://github.com/tsofist/web-buddy/",
7
8
  "scripts": {
8
9
  "format": "npm run lint:code -- --fix && npm run lint:style -- --fix",
9
10
  "lint": "npm run lint:code && npm run lint:style",
@@ -34,7 +35,7 @@
34
35
  "eslint-plugin-yml": "^1.15.0",
35
36
  "husky": "^9.1.7",
36
37
  "postcss-html": "^1.7.0",
37
- "prettier": "^3.3.3",
38
+ "prettier": "^3.4.1",
38
39
  "semantic-release": "^24.2.0",
39
40
  "stylelint": "^16.10.0",
40
41
  "stylelint-config-recommended-scss": "^14.1.0",
@@ -44,7 +45,7 @@
44
45
  "stylelint-order": "^6.0.4",
45
46
  "stylelint-prettier": "^5.0.2",
46
47
  "stylelint-scss": "^6.10.0",
47
- "typescript": "~5.6.3"
48
+ "typescript": "~5.7.2"
48
49
  },
49
50
  "devDependencies": {
50
51
  "rimraf": "^6.0.1",
@@ -1,24 +1,18 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "declaration": true,
4
- "declarationMap": true,
5
- "emitDecoratorMetadata": true,
6
- "experimentalDecorators": true,
7
4
  "forceConsistentCasingInFileNames": true,
8
5
  "importHelpers": true,
9
- "incremental": true,
10
- "module": "commonjs",
11
- "moduleResolution": "node",
12
6
  "newLine": "lf",
13
7
  "noEmitOnError": true,
14
- "noImplicitAny": true,
8
+ "noFallthroughCasesInSwitch": true,
15
9
  "noImplicitOverride": true,
16
10
  "noImplicitReturns": true,
17
- "noImplicitThis": true,
18
11
  "noUnusedLocals": true,
19
- "noUnusedParameters": false,
20
- "sourceMap": true,
21
- "strict": true
12
+ "noUnusedParameters": true,
13
+ "resolveJsonModule": true,
14
+ "strict": true,
15
+ "useDefineForClassFields": true
22
16
  },
23
17
  "exclude": ["node_modules"]
24
18
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "extends": "./base",
3
3
  "compilerOptions": {
4
- "lib": ["dom", "es2020"],
5
- "plugins": [],
6
- "resolveJsonModule": true,
7
- "target": "es2020",
8
- "useDefineForClassFields": false
4
+ "isolatedModules": true
5
+ },
6
+ "vueCompilerOptions": {
7
+ "strictTemplates": true,
8
+ "allowImplicitTemplateReturnType": false
9
9
  }
10
10
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "./base",
3
3
  "compilerOptions": {
4
- "lib": ["es2020"],
5
- "target": "es2020"
4
+ "incremental": true
6
5
  }
7
6
  }