diff --git a/internal/playground/tsconfig.json b/internal/playground/tsconfig.json index 2e0c455f..11276a06 100644 --- a/internal/playground/tsconfig.json +++ b/internal/playground/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "declaration": false, "sourceMap": true, + "baseUrl": "./", "target": "esnext", "module": "ESNext", "types": ["vite/client"], @@ -13,5 +14,6 @@ // "@pkg/components": ["./.yalc/@tool-pack/react-ui"] } }, + "include": ["src"], "exclude": ["dist"] } diff --git a/package.json b/package.json index e6d62f3c..fb66f4c2 100644 --- a/package.json +++ b/package.json @@ -16,6 +16,7 @@ "eject": "react-scripts eject", "check:lint": "eslint \"**/*.{ts,tsx}\"", "check:ts": "tsc -p tsconfig.noEmit.json --noEmit", + "check:ts-all": "pnpm check:ts & pnpm -r check:ts", "check:ts:lint": "npm run check:ts && npm run check:lint", "check:deps": "ncu", "check:css": "stylelint \"**/*.{css,scss}\"", diff --git a/packages/components/tsconfig.json b/packages/components/tsconfig.json index 7738b6f1..45442f99 100644 --- a/packages/components/tsconfig.json +++ b/packages/components/tsconfig.json @@ -11,5 +11,6 @@ "@tool-pack/react-ui": ["../../packages/react-ui/src"] } }, + "include": ["src"], "exclude": ["dist"] } diff --git a/packages/icons/tsconfig.json b/packages/icons/tsconfig.json index 84970975..65e2713e 100644 --- a/packages/icons/tsconfig.json +++ b/packages/icons/tsconfig.json @@ -11,5 +11,6 @@ "@pkg/*": ["../../packages/*/src"] } }, + "include": ["src"], "exclude": ["dist"] } diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json index 84970975..65e2713e 100644 --- a/packages/shared/tsconfig.json +++ b/packages/shared/tsconfig.json @@ -11,5 +11,6 @@ "@pkg/*": ["../../packages/*/src"] } }, + "include": ["src"], "exclude": ["dist"] }