aboutsummaryrefslogtreecommitdiffstats
path: root/renderer/tsconfig.json
diff options
context:
space:
mode:
authorEthan Mick <ethan@ethanmick.com>2025-09-15 12:33:33 -0400
committerEthan Mick <ethan@ethanmick.com>2025-09-15 12:33:33 -0400
commit791892808520a75e869c48d0684e413a42168d32 (patch)
treec1e4379d4fcc1c40c4015116be9793415db824ca /renderer/tsconfig.json
parenta30f727c95d7aa01e4a05091601067367e3b795b (diff)
fix: silence warning about rootDir
Diffstat (limited to 'renderer/tsconfig.json')
-rw-r--r--renderer/tsconfig.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/renderer/tsconfig.json b/renderer/tsconfig.json
index 2302bb9..2d8c061 100644
--- a/renderer/tsconfig.json
+++ b/renderer/tsconfig.json
@@ -2,7 +2,9 @@
2 "extends": "../tsconfig.json", 2 "extends": "../tsconfig.json",
3 "compilerOptions": { 3 "compilerOptions": {
4 "jsx": "react-jsx", 4 "jsx": "react-jsx",
5 "types": ["vite/client"] 5 "types": ["vite/client"],
6 "rootDir": "."
7
6 }, 8 },
7 "include": ["src", "index.html"] 9 "include": ["src", "index.html"]
8} \ No newline at end of file 10} \ No newline at end of file