mirror of
https://github.com/contentful/skills.git
synced 2026-09-14 20:17:03 +08:00
7d7fda1142
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>
17 lines
355 B
JSON
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"]
|
|
}
|