@hyoretsu/configs 1.1.16 → 1.1.18

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.
@@ -52,6 +52,9 @@
52
52
  },
53
53
  "linter": {
54
54
  "rules": {
55
+ "a11y": {
56
+ "noStaticElementInteractions": "info"
57
+ },
55
58
  "complexity": {
56
59
  "noBannedTypes": "warn",
57
60
  "noForEach": "off"
@@ -95,6 +98,9 @@
95
98
  }
96
99
  }
97
100
  },
101
+ "security": {
102
+ "noDangerouslySetInnerHtml": "warn"
103
+ },
98
104
  "style": {
99
105
  "noDoneCallback": "error",
100
106
  "noInferrableTypes": "error",
@@ -132,6 +138,10 @@
132
138
  "noShadowRestrictedNames": "warn",
133
139
  "noSkippedTests": "error",
134
140
  "noThenProperty": "info",
141
+ "noTsIgnore": {
142
+ "fix": "none",
143
+ "level": "warn"
144
+ },
135
145
  "useIterableCallbackReturn": "info"
136
146
  }
137
147
  }
@@ -52,6 +52,9 @@
52
52
  },
53
53
  "linter": {
54
54
  "rules": {
55
+ "a11y": {
56
+ "noStaticElementInteractions": "info"
57
+ },
55
58
  "complexity": {
56
59
  "noBannedTypes": "warn",
57
60
  "noForEach": "off"
@@ -95,6 +98,9 @@
95
98
  }
96
99
  }
97
100
  },
101
+ "security": {
102
+ "noDangerouslySetInnerHtml": "warn"
103
+ },
98
104
  "style": {
99
105
  "noDoneCallback": "error",
100
106
  "noInferrableTypes": "error",
@@ -133,6 +139,10 @@
133
139
  "noShadowRestrictedNames": "warn",
134
140
  "noSkippedTests": "error",
135
141
  "noThenProperty": "info",
142
+ "noTsIgnore": {
143
+ "fix": "none",
144
+ "level": "warn"
145
+ },
136
146
  "useIterableCallbackReturn": "info"
137
147
  }
138
148
  }
@@ -53,6 +53,7 @@
53
53
  "linter": {
54
54
  "rules": {
55
55
  "a11y": {
56
+ "noStaticElementInteractions": "info",
56
57
  "noSvgWithoutTitle": "warn",
57
58
  "useAltText": "warn",
58
59
  "useButtonType": "warn",
@@ -142,6 +143,10 @@
142
143
  "noShadowRestrictedNames": "warn",
143
144
  "noSkippedTests": "error",
144
145
  "noThenProperty": "info",
146
+ "noTsIgnore": {
147
+ "fix": "none",
148
+ "level": "warn"
149
+ },
145
150
  "useIterableCallbackReturn": "info"
146
151
  }
147
152
  }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
+ "baseUrl": "./src",
4
5
  "checkJs": true,
5
6
  "composite": true,
6
7
  "downlevelIteration": true,
@@ -26,6 +27,10 @@
26
27
  "sourceMap": true,
27
28
  "strict": true,
28
29
  "target": "ESNext",
30
+ "typeRoots": [
31
+ "./node_modules/@types",
32
+ "src/@types"
33
+ ],
29
34
  "verbatimModuleSyntax": true
30
35
  }
31
36
  }
package/dist/ts/base.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
+ "baseUrl": "./src",
4
5
  "checkJs": true,
5
6
  "composite": true,
6
7
  "downlevelIteration": true,
@@ -24,6 +25,10 @@
24
25
  "sourceMap": true,
25
26
  "strict": true,
26
27
  "target": "ESNext",
28
+ "typeRoots": [
29
+ "./node_modules/@types",
30
+ "src/@types"
31
+ ],
27
32
  "verbatimModuleSyntax": true
28
33
  }
29
34
  }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
+ "baseUrl": "./src",
4
5
  "checkJs": true,
5
6
  "composite": true,
6
7
  "downlevelIteration": true,
@@ -26,6 +27,10 @@
26
27
  "sourceMap": true,
27
28
  "strict": true,
28
29
  "target": "ESNext",
30
+ "typeRoots": [
31
+ "./node_modules/@types",
32
+ "src/@types"
33
+ ],
29
34
  "verbatimModuleSyntax": true
30
35
  }
31
36
  }
package/dist/ts/lib.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
+ "baseUrl": "./src",
4
5
  "checkJs": true,
5
6
  "composite": false,
6
7
  "declaration": true,
@@ -26,6 +27,10 @@
26
27
  "sourceMap": true,
27
28
  "strict": true,
28
29
  "target": "ESNext",
30
+ "typeRoots": [
31
+ "./node_modules/@types",
32
+ "src/@types"
33
+ ],
29
34
  "verbatimModuleSyntax": true
30
35
  }
31
36
  }
package/dist/ts/nest.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
+ "baseUrl": "./src",
4
5
  "checkJs": true,
5
6
  "composite": true,
6
7
  "downlevelIteration": true,
@@ -26,6 +27,10 @@
26
27
  "sourceMap": true,
27
28
  "strict": true,
28
29
  "target": "ESNext",
30
+ "typeRoots": [
31
+ "./node_modules/@types",
32
+ "src/@types"
33
+ ],
29
34
  "verbatimModuleSyntax": false
30
35
  }
31
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyoretsu/configs",
3
- "version": "1.1.16",
3
+ "version": "1.1.18",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "files": [