Files
c0py/apps/api/tsconfig.json
T
admin e6cc719f37
CI (SIAX Cloud) / security (push) Successful in 12s
CI (SIAX Cloud) / contracts (push) Failing after 12s
CI (SIAX Cloud) / quality (push) Failing after 8s
Deploy to Coolify / deploy (push) Failing after 2s
c0py: initial scaffolding for website registry tool
2026-09-16 13:15:21 +02:00

25 lines
633 B
JSON

# C0PY API -- tsconfig.json
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@siax/c0py-config": ["../packages/config/src/index.ts"],
"@siax/c0py-core": ["../packages/c0py-core/src/index.ts"],
"@siax/c0py-types": ["../packages/types/src/index.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
}