You've already forked agentic-coding-workflow
27 lines
669 B
JSON
27 lines
669 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client", "node"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"baseUrl": ".",
|
|
"noEmit": true,
|
|
"ignoreDeprecations": "6.0"
|
|
},
|
|
"include": ["src/**/*", "test/**/*"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|