Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
17 lines
410 B
JSON
17 lines
410 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "vitest/globals"],
|
|
"rootDir": ".",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["src", "tests", "vitest.config.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|