Two diagnostics from the IDE on turbo/generators/config.ts: 1. `Cannot find module '@turbo/gen'` — there was no tsconfig in turbo/generators/, so the IDE was opening config.ts in loose mode without proper module resolution context. Added a small tsconfig.json that extends tsconfig.base, sets NodeNext module resolution, and includes only ./**/*.ts (templates excluded). 2. `Parameter 'answers' implicitly has an 'any' type` — annotated the printNextSteps custom-action function param as `Record<string, unknown>` (Plop's runtime answers shape). The inner cast to the typed Answers shape was already in place. `npx tsc --noEmit -p turbo/generators/tsconfig.json` is now clean. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
257 B
JSON
13 lines
257 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"noEmit": true,
|
|
"types": ["node"],
|
|
"rootDir": "."
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": ["./templates/**"]
|
|
}
|