aboutsummaryrefslogtreecommitdiffstats
path: root/apps/browser-extension
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-02-01 17:03:06 +0000
committerMohamed Bassem <me@mbassem.com>2025-02-01 17:03:06 +0000
commit0893446bed6cca753549ee8e3cf090f2fcf11d9d (patch)
tree213ab41ac806e3398b8ac4db686b44ced7c67e2a /apps/browser-extension
parentba9f0a2ebf38f9f195f893b955b877e3d42b5a79 (diff)
downloadkarakeep-0893446bed6cca753549ee8e3cf090f2fcf11d9d.tar.zst
deps: Upgrade typescript to 5.7
Diffstat (limited to 'apps/browser-extension')
-rw-r--r--apps/browser-extension/package.json2
-rw-r--r--apps/browser-extension/tsconfig.json3
-rw-r--r--apps/browser-extension/tsconfig.node.json11
3 files changed, 2 insertions, 14 deletions
diff --git a/apps/browser-extension/package.json b/apps/browser-extension/package.json
index c696f95c..499f26ee 100644
--- a/apps/browser-extension/package.json
+++ b/apps/browser-extension/package.json
@@ -56,7 +56,7 @@
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
- "typescript": "^5.3.3",
+ "typescript": "^5.7.3",
"vite": "^5.1.0"
},
"eslintConfig": {
diff --git a/apps/browser-extension/tsconfig.json b/apps/browser-extension/tsconfig.json
index b9bc1c46..ddc2d870 100644
--- a/apps/browser-extension/tsconfig.json
+++ b/apps/browser-extension/tsconfig.json
@@ -21,6 +21,5 @@
"noFallthroughCasesInSwitch": true
},
"include": ["src", "vite.config.ts"],
- "exclude": ["node_modules"],
- "references": [{ "path": "./tsconfig.node.json" }]
+ "exclude": ["node_modules"]
}
diff --git a/apps/browser-extension/tsconfig.node.json b/apps/browser-extension/tsconfig.node.json
deleted file mode 100644
index 97ede7ee..00000000
--- a/apps/browser-extension/tsconfig.node.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "compilerOptions": {
- "composite": true,
- "skipLibCheck": true,
- "module": "ESNext",
- "moduleResolution": "bundler",
- "allowSyntheticDefaultImports": true,
- "strict": true
- },
- "include": ["vite.config.ts"]
-}