xtablo-source/api/tsconfig.json

15 lines
297 B
JSON
Raw Normal View History

2025-06-23 09:34:30 +00:00
{
"compilerOptions": {
"target": "ESNext",
2025-06-24 19:56:43 +00:00
"module": "NodeNext",
2025-06-23 09:34:30 +00:00
"strict": true,
2025-06-24 19:56:43 +00:00
"verbatimModuleSyntax": true,
2025-06-23 09:34:30 +00:00
"skipLibCheck": true,
2025-06-24 19:56:43 +00:00
"types": ["node"],
2025-06-23 09:34:30 +00:00
"jsx": "react-jsx",
2025-06-24 19:56:43 +00:00
"jsxImportSource": "hono/jsx",
2025-09-23 20:14:02 +00:00
"outDir": "./dist"
2025-06-23 09:34:30 +00:00
},
2025-06-24 19:56:43 +00:00
"exclude": ["node_modules"]
}