@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.
Files changed (4) hide show
  1. package/LICENSE +1 -1
  2. package/lib.json +14 -23
  3. package/nextjs.json +13 -15
  4. package/package.json +2 -6
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020 Vitus Labs
3
+ Copyright (c) 2026 Vitus Labs
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/lib.json CHANGED
@@ -1,34 +1,25 @@
1
1
  {
2
- "$schema": "http://json.schemastore.org/tsconfig",
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
3
  "compilerOptions": {
4
- "jsx": "react",
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
- "moduleDetection": "force",
13
- "strict": false,
15
+ "allowJs": true,
16
+ "strict": true,
14
17
  "noUncheckedIndexedAccess": true,
15
- "strictNullChecks": true,
16
- "moduleResolution": "Bundler",
17
- "module": "ES2022",
18
- "noEmit": true,
18
+ "declaration": true,
19
+ "declarationMap": true,
19
20
  "sourceMap": true,
20
- "incremental": true,
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": "esnext",
4
- "module": "esnext",
4
+ "target": "ES2024",
5
+ "module": "ESNext",
6
+ "moduleResolution": "Bundler",
7
+ "moduleDetection": "force",
8
+ "verbatimModuleSyntax": true,
5
9
  "jsx": "preserve",
6
- "lib": ["dom", "es2017"],
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
- "isolatedModules": true
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
- "dependencies": {
29
- "@styled/typescript-styled-plugin": "^1.0.1"
30
- },
31
- "gitHead": "5d4ca9531e722c689efa2c7acf355d34cfeaeb8e"
27
+ "gitHead": "e8afc9e68bf91aac79cc87ea2aabd40565077686"
32
28
  }