diff options
Diffstat (limited to 'tsconfig.web.json')
| -rw-r--r-- | tsconfig.web.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tsconfig.web.json b/tsconfig.web.json new file mode 100644 index 0000000..9c16b66 --- /dev/null +++ b/tsconfig.web.json @@ -0,0 +1,19 @@ +{ + "extends": "@electron-toolkit/tsconfig/tsconfig.web.json", + "include": [ + "src/renderer/src/env.d.ts", + "src/renderer/src/**/*", + "src/renderer/src/**/*.tsx", + "src/preload/*.d.ts" + ], + "compilerOptions": { + "composite": true, + "jsx": "react-jsx", + "baseUrl": ".", + "paths": { + "@renderer/*": [ + "src/renderer/src/*" + ] + } + } +} |
