Files
contentful__skills/tsconfig.json
Tim Beyer 7d7fda1142 feat(optimization): add optimization-doctor skill [NT-2952]
First skill-kit skill in this repo. Adds TypeScript infrastructure
(package.json, tsconfig, CI) and the optimization-doctor diagnostic
workflow that scans for Ninetailed personalization issues using a
hybrid approach: deterministic file-system scan + conditional agentic
deep search for ambiguous patterns.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-20 15:43:36 +02:00

17 lines
355 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "nodenext",
"moduleResolution": "nodenext",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["node"]
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules"]
}