mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-04-30 20:49:56 +00:00
22 lines
451 B
JSON
22 lines
451 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["ESNext"],
|
|
"types": ["@cloudflare/workers-types"],
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "hono/jsx",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"paths": {
|
|
"*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|