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"] }