* feat(infra): backend cookiecutter template with fastapi tortoise * feat(infra): cli cookiecutter template with typer entry point * feat(infra): fullstack cookiecutter template with sveltekit frontend * test(infra): cookiecutter template tests and render fixes * style(infra): ruff cleanup for cookiecutter template tests * style(infra): ruff format cookiecutter template tests * fix(infra): handle use_db no use_auth no in cookiecutter --------- Co-authored-by: opencode-agent <agent@opencode.local>
22 lines
No EOL
575 B
JSON
22 lines
No EOL
575 B
JSON
{
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"allowJs": true,
|
|
"moduleResolution": "bundler",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"verbatimModuleSyntax": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"$lib": ["src/lib"],
|
|
"$lib/*": ["src/lib/*"],
|
|
"$components": ["src/lib/components"],
|
|
"$components/*": ["src/lib/components/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.js", "src/**/*.svelte", "vite.config.js", "vitest.config.js"]
|
|
} |