@lego-box/shell 1.0.8 → 1.0.10

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@lego-box/shell",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Piral microfrontend shell for Lego Box - provides authentication, PocketBase integration, RBAC, and shared UI components",
5
5
  "keywords": [
6
6
  "piral",
@@ -26,6 +26,7 @@
26
26
  "dist/emulator",
27
27
  "pilet.ts",
28
28
  "src",
29
+ "tsconfig.json",
29
30
  "webpack.config.js",
30
31
  "tailwind.config.js",
31
32
  "postcss.config.js",
package/tsconfig.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
5
+ "module": "CommonJS",
6
+ "moduleResolution": "node",
7
+ "jsx": "react-jsx",
8
+ "strict": true,
9
+ "esModuleInterop": true,
10
+ "allowSyntheticDefaultImports": true,
11
+ "skipLibCheck": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "resolveJsonModule": true,
14
+ "isolatedModules": true,
15
+ "declaration": true,
16
+ "declarationMap": true
17
+ },
18
+ "ts-node": {
19
+ "esm": false,
20
+ "transpileOnly": true
21
+ },
22
+ "include": ["src", "piral"]
23
+ }