@vitus-labs/tools-typescript 1.5.1 → 1.5.2-alpha.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/LICENSE +1 -1
- package/lib.json +14 -23
- package/nextjs.json +13 -15
- package/package.json +2 -6
package/LICENSE
CHANGED
package/lib.json
CHANGED
|
@@ -1,34 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"
|
|
4
|
+
"target": "ES2024",
|
|
5
|
+
"module": "Preserve",
|
|
6
|
+
"moduleResolution": "Bundler",
|
|
7
|
+
"moduleDetection": "force",
|
|
8
|
+
"verbatimModuleSyntax": true,
|
|
9
|
+
"jsx": "react-jsx",
|
|
10
|
+
"lib": ["ES2024", "dom"],
|
|
5
11
|
"esModuleInterop": true,
|
|
6
12
|
"forceConsistentCasingInFileNames": true,
|
|
7
13
|
"skipLibCheck": true,
|
|
8
|
-
"target": "ES2024",
|
|
9
|
-
"verbatimModuleSyntax": true,
|
|
10
|
-
"allowJs": true,
|
|
11
14
|
"resolveJsonModule": true,
|
|
12
|
-
"
|
|
13
|
-
"strict":
|
|
15
|
+
"allowJs": true,
|
|
16
|
+
"strict": true,
|
|
14
17
|
"noUncheckedIndexedAccess": true,
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"module": "ES2022",
|
|
18
|
-
"noEmit": true,
|
|
18
|
+
"declaration": true,
|
|
19
|
+
"declarationMap": true,
|
|
19
20
|
"sourceMap": true,
|
|
20
|
-
"
|
|
21
|
-
"allowSyntheticDefaultImports": true,
|
|
22
|
-
"lib": ["ES2022", "dom"],
|
|
23
|
-
"preserveSymlinks": true,
|
|
24
|
-
"isolatedModules": true,
|
|
25
|
-
"plugins": [
|
|
26
|
-
{
|
|
27
|
-
"name": "@styled/typescript-styled-plugin"
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"declaration": true
|
|
21
|
+
"noEmit": true
|
|
31
22
|
},
|
|
32
23
|
"include": ["src"],
|
|
33
|
-
"exclude": ["node_modules", "__stories__", "lib
|
|
24
|
+
"exclude": ["node_modules", "__stories__", "lib"]
|
|
34
25
|
}
|
package/nextjs.json
CHANGED
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
2
3
|
"compilerOptions": {
|
|
3
|
-
"target": "
|
|
4
|
-
"module": "
|
|
4
|
+
"target": "ES2024",
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"moduleResolution": "Bundler",
|
|
7
|
+
"moduleDetection": "force",
|
|
8
|
+
"verbatimModuleSyntax": true,
|
|
5
9
|
"jsx": "preserve",
|
|
6
|
-
"lib": ["dom", "
|
|
7
|
-
"moduleResolution": "node",
|
|
8
|
-
"allowJs": true,
|
|
9
|
-
"noEmit": true,
|
|
10
|
-
"strict": true,
|
|
11
|
-
"allowSyntheticDefaultImports": true,
|
|
12
|
-
"skipLibCheck": true,
|
|
13
|
-
"noUnusedLocals": true,
|
|
14
|
-
"noUnusedParameters": true,
|
|
15
|
-
"removeComments": false,
|
|
16
|
-
"preserveConstEnums": true,
|
|
17
|
-
"sourceMap": true,
|
|
10
|
+
"lib": ["ES2024", "dom", "dom.iterable"],
|
|
18
11
|
"esModuleInterop": true,
|
|
19
12
|
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"skipLibCheck": true,
|
|
20
14
|
"resolveJsonModule": true,
|
|
21
|
-
"
|
|
15
|
+
"allowJs": true,
|
|
16
|
+
"strict": true,
|
|
17
|
+
"noUncheckedIndexedAccess": true,
|
|
18
|
+
"noEmit": true,
|
|
19
|
+
"incremental": true
|
|
22
20
|
},
|
|
23
21
|
"exclude": ["node_modules"],
|
|
24
22
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vitus-labs/tools-typescript",
|
|
3
|
-
"version": "1.5.1",
|
|
3
|
+
"version": "1.5.2-alpha.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Vit Bokisch <vit@bokisch.com>",
|
|
6
6
|
"maintainers": [
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"./nextjs": "./nextjs.json"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
|
-
"index.json",
|
|
16
15
|
"lib.json",
|
|
17
16
|
"nextjs.json"
|
|
18
17
|
],
|
|
@@ -25,8 +24,5 @@
|
|
|
25
24
|
"peerDependencies": {
|
|
26
25
|
"typescript": ">=5"
|
|
27
26
|
},
|
|
28
|
-
"
|
|
29
|
-
"@styled/typescript-styled-plugin": "^1.0.1"
|
|
30
|
-
},
|
|
31
|
-
"gitHead": "5d4ca9531e722c689efa2c7acf355d34cfeaeb8e"
|
|
27
|
+
"gitHead": "e8afc9e68bf91aac79cc87ea2aabd40565077686"
|
|
32
28
|
}
|