From 07980fcc5923b23826b8c62f73005af00a00fb8b Mon Sep 17 00:00:00 2001 From: kevin-asprec Date: Mon, 13 Apr 2026 12:04:30 +0800 Subject: [PATCH] fix: standalone tsconfig and Dockerfile for monorepo split --- packages/shared/tsconfig.json | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json index 792172f..dae4070 100644 --- a/packages/shared/tsconfig.json +++ b/packages/shared/tsconfig.json @@ -1,8 +1,20 @@ { - "extends": "../../tsconfig.base.json", "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "lib": ["ES2022"], + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "isolatedModules": true, + "declaration": true, + "sourceMap": true, "outDir": "./dist", "rootDir": "./src" }, - "include": ["src"] + "include": ["src"], + "exclude": ["node_modules", "dist"] }