{ "//": "Declaration-only emit for design-sync. The app's own tsconfig sets noEmit, and the repo ships no .d.ts tree — without one the converter emits empty Props bodies and the design agent gets no API contract. Driven by .design-sync/make-pkg.mjs.", "extends": "../tsconfig.json", "compilerOptions": { "noEmit": false, "declaration": true, "emitDeclarationOnly": true, "declarationMap": false, "incremental": false, "rootDir": "..", "outDir": "../.ds-pkg/types", "skipLibCheck": true, "plugins": [] }, "include": ["../next-env.d.ts", "../components/**/*.ts", "../components/**/*.tsx", "../hooks/**/*.ts", "../lib/**/*.ts"], "exclude": ["../node_modules", "../.next", "../.ds-sync", "../ds-bundle"] }