mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-05 23:40:57 +00:00
19 lines
511 B
JSON
19 lines
511 B
JSON
{
|
|
"extends": "@repo/typescript-config/nextjs.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": false,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"target": "esnext"
|
|
},
|
|
"include": ["./"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|