@lssm/tool.typescript 0.0.0-canary-20251120170226

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/CHANGELOG.md ADDED
@@ -0,0 +1,80 @@
1
+ # @lssm/tool.typescript
2
+
3
+ ## 0.0.0-canary-20251120170226
4
+
5
+ ### Minor Changes
6
+
7
+ - e52a9f3: Foundation Hardening
8
+
9
+ ## 0.7.4
10
+
11
+ ### Patch Changes
12
+
13
+ - fix typing
14
+
15
+ ## 0.7.3
16
+
17
+ ### Patch Changes
18
+
19
+ - add right-sidebar
20
+
21
+ ## 0.7.2
22
+
23
+ ### Patch Changes
24
+
25
+ - fix typing
26
+
27
+ ## 0.7.1
28
+
29
+ ### Patch Changes
30
+
31
+ - fix typing
32
+
33
+ ## 0.7.0
34
+
35
+ ### Minor Changes
36
+
37
+ - fixii
38
+
39
+ ## 0.6.0
40
+
41
+ ### Minor Changes
42
+
43
+ - fix versionnnn
44
+
45
+ ## 0.5.0
46
+
47
+ ### Minor Changes
48
+
49
+ - fix
50
+
51
+ ## 0.4.0
52
+
53
+ ### Minor Changes
54
+
55
+ - fix exports
56
+
57
+ ## 0.3.0
58
+
59
+ ### Minor Changes
60
+
61
+ - fix it
62
+
63
+ ## 0.2.0
64
+
65
+ ### Minor Changes
66
+
67
+ - fix
68
+
69
+ ## 0.1.0
70
+
71
+ ### Minor Changes
72
+
73
+ - fix
74
+ - 748b3a2: fix publish
75
+
76
+ ## 0.1.0
77
+
78
+ ### Minor Changes
79
+
80
+ - eeba130: fix publish
package/base.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "declarationMap": true,
6
+ "composite": false,
7
+ "esModuleInterop": true,
8
+ "incremental": true,
9
+ "isolatedModules": true,
10
+ "lib": ["esnext", "DOM", "DOM.Iterable"],
11
+ "module": "Preserve",
12
+ "moduleDetection": "force",
13
+ "moduleResolution": "bundler",
14
+ "noUncheckedIndexedAccess": true,
15
+ "resolveJsonModule": true,
16
+ "verbatimModuleSyntax": true,
17
+ "skipLibCheck": true,
18
+ "strict": true,
19
+ "target": "esnext",
20
+ "experimentalDecorators": true,
21
+ "strictPropertyInitialization": false,
22
+ "plugins": [{ "name": "next" }]
23
+ }
24
+ }
package/nextjs.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./base.json",
4
+ "compilerOptions": {
5
+ "plugins": [{ "name": "next" }],
6
+ "module": "ESNext",
7
+ "moduleResolution": "Bundler",
8
+ "allowJs": true,
9
+ "jsx": "react-jsx",
10
+ "noEmit": true
11
+ }
12
+ }
package/package.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "@lssm/tool.typescript",
3
+ "version": "0.0.0-canary-20251120170226",
4
+ "devDependencies": {
5
+ "typescript": "^5.9.3"
6
+ },
7
+ "type": "module"
8
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "extends": "./base.json",
4
+ "compilerOptions": {
5
+ "jsx": "react-jsx"
6
+ }
7
+ }