Kraft102 commited on
Commit
aefa431
·
verified ·
1 Parent(s): a9f0bb1

Deploy from GitHub Actions 2025-12-15_20-19-16

Browse files
apps/backend/package.json CHANGED
@@ -26,8 +26,8 @@
26
  "@types/js-yaml": "^4.0.9",
27
  "@types/pdf-parse": "^1.1.5",
28
  "@types/systeminformation": "^3.23.1",
29
- "@widget-tdc/domain-types": "file:./packages/domain-types",
30
- "@widget-tdc/mcp-types": "file:./packages/mcp-types",
31
  "@xenova/transformers": "^2.17.2",
32
  "axios": "^1.6.5",
33
  "cheerio": "^1.0.0",
@@ -84,11 +84,12 @@
84
  "@types/uuid": "^9.0.7",
85
  "@types/ws": "^8.5.10",
86
  "@types/xml2js": "^0.4.14",
87
- "@typescript-eslint/eslint-plugin": "^7.16.0",
88
- "@typescript-eslint/parser": "^7.16.0",
89
  "esbuild": "^0.24.2",
90
- "eslint": "^8.57.0",
91
  "tsx": "^4.20.6",
92
- "typescript": "~5.8.2"
 
93
  }
94
  }
 
26
  "@types/js-yaml": "^4.0.9",
27
  "@types/pdf-parse": "^1.1.5",
28
  "@types/systeminformation": "^3.23.1",
29
+ "@widget-tdc/domain-types": "*",
30
+ "@widget-tdc/mcp-types": "*",
31
  "@xenova/transformers": "^2.17.2",
32
  "axios": "^1.6.5",
33
  "cheerio": "^1.0.0",
 
84
  "@types/uuid": "^9.0.7",
85
  "@types/ws": "^8.5.10",
86
  "@types/xml2js": "^0.4.14",
87
+ "@typescript-eslint/eslint-plugin": "^8.46.4",
88
+ "@typescript-eslint/parser": "^8.46.4",
89
  "esbuild": "^0.24.2",
90
+ "eslint": "^9.39.1",
91
  "tsx": "^4.20.6",
92
+ "typescript": "~5.8.3",
93
+ "vitest": "^4.0.8"
94
  }
95
  }
apps/backend/tsconfig.json CHANGED
@@ -1,34 +1,21 @@
1
  {
 
2
  "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "ESNext",
5
- "moduleResolution": "node",
6
  "outDir": "./dist",
7
  "rootDir": "./src",
8
- "strict": false,
9
- "esModuleInterop": true,
10
- "skipLibCheck": true,
11
- "forceConsistentCasingInFileNames": true,
12
- "resolveJsonModule": true,
13
- "baseUrl": ".",
14
- "paths": {
15
- "@widget-tdc/mcp-types": [
16
- "../../packages/mcp-types/dist/index.d.ts"
17
- ],
18
- "@widget-tdc/domain-types": [
19
- "../../packages/domain-types/dist/index.d.ts"
20
- ]
21
- }
22
  },
23
- "include": [
24
- "src/**/*"
25
- ],
26
  "exclude": [
27
  "node_modules",
28
  "dist",
29
- "src/tests/**/*",
30
- "src/**/*.test.ts",
31
- "src/**/*.spec.ts",
32
- "src/scripts/**/*"
 
 
 
33
  ]
34
- }
 
1
  {
2
+ "extends": "../../tsconfig.base.json",
3
  "compilerOptions": {
 
 
 
4
  "outDir": "./dist",
5
  "rootDir": "./src",
6
+ "composite": true,
7
+ "noEmit": false
 
 
 
 
 
 
 
 
 
 
 
 
8
  },
9
+ "include": ["src/**/*"],
 
 
10
  "exclude": [
11
  "node_modules",
12
  "dist",
13
+ "tests/**/*",
14
+ "**/*.test.ts",
15
+ "**/*.spec.ts"
16
+ ],
17
+ "references": [
18
+ { "path": "../../packages/domain-types" },
19
+ { "path": "../../packages/mcp-types" }
20
  ]
21
+ }
package-lock.json CHANGED
The diff for this file is too large to render. See raw diff
 
package.json CHANGED
@@ -67,7 +67,7 @@
67
  "eslint-plugin-security": "^3.0.1",
68
  "jsdom": "^27.2.0",
69
  "prettier": "^3.6.2",
70
- "typescript": "~5.8.2",
71
  "vite": "^7.2.4",
72
  "vitest": "^4.0.8"
73
  },
 
67
  "eslint-plugin-security": "^3.0.1",
68
  "jsdom": "^27.2.0",
69
  "prettier": "^3.6.2",
70
+ "typescript": "~5.8.3",
71
  "vite": "^7.2.4",
72
  "vitest": "^4.0.8"
73
  },
packages/domain-types/package.json CHANGED
@@ -3,11 +3,17 @@
3
  "version": "1.0.0",
4
  "main": "dist/index.js",
5
  "types": "dist/index.d.ts",
 
 
 
 
 
 
6
  "scripts": {
7
  "build": "tsc",
8
- "test": "echo \"No tests yet\""
9
  },
10
  "devDependencies": {
11
- "typescript": "~5.8.2"
12
  }
13
  }
 
3
  "version": "1.0.0",
4
  "main": "dist/index.js",
5
  "types": "dist/index.d.ts",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "default": "./dist/index.js"
10
+ }
11
+ },
12
  "scripts": {
13
  "build": "tsc",
14
+ "dev": "tsc --watch"
15
  },
16
  "devDependencies": {
17
+ "typescript": "~5.8.3"
18
  }
19
  }
packages/domain-types/tsconfig.json CHANGED
@@ -1,13 +1,9 @@
1
  {
 
2
  "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "commonjs",
5
- "declaration": true,
6
  "outDir": "./dist",
7
- "strict": true,
8
- "esModuleInterop": true,
9
- "skipLibCheck": true,
10
- "forceConsistentCasingInFileNames": true
11
  },
12
  "include": ["src/**/*"],
13
  "exclude": ["node_modules", "dist"]
 
1
  {
2
+ "extends": "../../tsconfig.base.json",
3
  "compilerOptions": {
 
 
 
4
  "outDir": "./dist",
5
+ "rootDir": "./src",
6
+ "composite": true
 
 
7
  },
8
  "include": ["src/**/*"],
9
  "exclude": ["node_modules", "dist"]
packages/mcp-types/package.json CHANGED
@@ -14,9 +14,9 @@
14
  "dev": "tsc --watch"
15
  },
16
  "dependencies": {
17
- "@widget-tdc/domain-types": "file:../domain-types"
18
  },
19
  "devDependencies": {
20
- "typescript": "~5.8.2"
21
  }
22
  }
 
14
  "dev": "tsc --watch"
15
  },
16
  "dependencies": {
17
+ "@widget-tdc/domain-types": "*"
18
  },
19
  "devDependencies": {
20
+ "typescript": "~5.8.3"
21
  }
22
  }
packages/mcp-types/tsconfig.json CHANGED
@@ -1,18 +1,13 @@
1
  {
 
2
  "compilerOptions": {
3
- "target": "ES2020",
4
- "module": "commonjs",
5
- "declaration": true,
6
  "outDir": "./dist",
7
- "strict": true,
8
- "esModuleInterop": true,
9
- "skipLibCheck": true,
10
- "forceConsistentCasingInFileNames": true,
11
- "baseUrl": ".",
12
- "paths": {
13
- "@widget-tdc/domain-types": ["../domain-types/src"]
14
- }
15
  },
16
  "include": ["src/**/*"],
17
- "exclude": ["node_modules", "dist"]
 
 
 
18
  }
 
1
  {
2
+ "extends": "../../tsconfig.base.json",
3
  "compilerOptions": {
 
 
 
4
  "outDir": "./dist",
5
+ "rootDir": "./src",
6
+ "composite": true
 
 
 
 
 
 
7
  },
8
  "include": ["src/**/*"],
9
+ "exclude": ["node_modules", "dist"],
10
+ "references": [
11
+ { "path": "../domain-types" }
12
+ ]
13
  }
tsconfig.json CHANGED
@@ -1,22 +1,12 @@
1
  {
2
- "files": [],
3
- "references": [
4
- {
5
- "path": "apps/backend"
6
- },
7
- {
8
- "path": "apps/matrix-frontend"
9
- },
10
- {
11
- "path": "packages/domain-types"
12
- },
13
- {
14
- "path": "packages/mcp-types"
15
- }
16
- ],
17
  "compilerOptions": {
18
- "composite": true,
19
- "skipLibCheck": true,
20
  "noEmit": true
21
- }
22
- }
 
 
 
 
 
 
 
1
  {
2
+ "extends": "./tsconfig.base.json",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  "compilerOptions": {
 
 
4
  "noEmit": true
5
+ },
6
+ "files": [],
7
+ "references": [
8
+ { "path": "packages/domain-types" },
9
+ { "path": "packages/mcp-types" },
10
+ { "path": "apps/backend" }
11
+ ]
12
+ }