svgl/api-routes/tsconfig.json

17 lines
335 B
JSON
Raw Normal View History

2024-05-11 02:23:26 +08:00
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"lib": ["ESNext"],
"types": ["@cloudflare/workers-types"],
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",
"baseUrl": ".",
"paths": {
"svgldata": ["../src/data"]
}
}
}