supermemory/apps/sdk-playground/tsconfig.json
Dhravya Shah 93f92cdd58 feat(sdk-playground): add interactive chat playground for SDK testing
Next.js UI with TypeScript and Python chat backends, context panel,
API key management, tools reference, and middleware configuration.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-07 19:40:34 -07:00

41 lines
702 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}