Configures TypeScript with strict: true, target ES2020, rootDir src/, outDir dist/. tsc --noEmit passes cleanly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
221 B
JSON
13 lines
221 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"]
|
|
}
|