diff options
| author | Ethan Mick <ethan@ethanmick.com> | 2025-09-15 12:33:33 -0400 |
|---|---|---|
| committer | Ethan Mick <ethan@ethanmick.com> | 2025-09-15 12:33:33 -0400 |
| commit | 791892808520a75e869c48d0684e413a42168d32 (patch) | |
| tree | c1e4379d4fcc1c40c4015116be9793415db824ca | |
| parent | a30f727c95d7aa01e4a05091601067367e3b795b (diff) | |
fix: silence warning about rootDir
| -rw-r--r-- | renderer/tsconfig.json | 4 |
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 |
