aboutsummaryrefslogtreecommitdiff
path: root/apps/web/tsconfig.json
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-02-23 16:04:49 -0700
committerDhravya <[email protected]>2024-02-23 16:04:49 -0700
commitaa1b57bbcd99da4c6d68c145f7c07ea7bd35c8dc (patch)
treef5ab247b154a21bbebbe56cca0d7f3397219b7c3 /apps/web/tsconfig.json
parenthide bun lockfile (diff)
downloadsupermemory-aa1b57bbcd99da4c6d68c145f7c07ea7bd35c8dc.tar.xz
supermemory-aa1b57bbcd99da4c6d68c145f7c07ea7bd35c8dc.zip
chaos
Diffstat (limited to 'apps/web/tsconfig.json')
-rw-r--r--apps/web/tsconfig.json82
1 files changed, 38 insertions, 44 deletions
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json
index bf2b7c3d..cac28467 100644
--- a/apps/web/tsconfig.json
+++ b/apps/web/tsconfig.json
@@ -1,49 +1,43 @@
{
"compilerOptions": {
- "esModuleInterop": true,
- "skipLibCheck": true,
- "target": "es2022",
- "allowJs": true,
- "resolveJsonModule": true,
- "moduleDetection": "force",
- "isolatedModules": true,
- "strict": true,
- "noUncheckedIndexedAccess": true,
- "checkJs": true,
- "lib": [
- "dom",
- "dom.iterable",
- "ES2022"
- ],
- "noEmit": true,
- "module": "ESNext",
- "moduleResolution": "Bundler",
- "jsx": "preserve",
- "plugins": [
- {
- "name": "next"
- }
- ],
- "incremental": true,
- "baseUrl": ".",
- "paths": {
- "@/*": [
- "./src/*"
- ]
- }
+ "esModuleInterop": true,
+ "skipLibCheck": true,
+ "target": "es2022",
+ "allowJs": true,
+ "resolveJsonModule": true,
+ "moduleDetection": "force",
+ "isolatedModules": true,
+ "strict": true,
+ "noUncheckedIndexedAccess": true,
+ "checkJs": true,
+ "lib": ["dom", "dom.iterable", "ES2022"],
+ "noEmit": true,
+ "module": "ESNext",
+ "moduleResolution": "Bundler",
+ "jsx": "preserve",
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "incremental": true,
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./src/*"]
+ },
+ "types": ["@cloudflare/workers-types/2023-07-01"]
},
"include": [
- "../.eslintrc.cjs",
- "next-env.d.ts",
- "**/*.ts",
- "**/*.tsx",
- "**/*.cjs",
- "**/*.js",
- ".next/types/**/*.ts",
- "../tailwind.config.ts",
- "../prettier.config.js"
+ "../.eslintrc.cjs",
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ "**/*.cjs",
+ "**/*.js",
+ ".next/types/**/*.ts",
+ "../tailwind.config.ts",
+ "../prettier.config.js",
+ "../anycontext-front/src/app/MessagePoster.tsx"
],
- "exclude": [
- "node_modules"
- ]
-} \ No newline at end of file
+ "exclude": ["node_modules"]
+}