diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-06-21 11:40:02 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-06-21 11:40:02 -0700 |
| commit | 1e197556481181dbf1f0239f4ec2740cfa5aa790 (patch) | |
| tree | 2766bf9f085fac6bfaa8c8c71d4403f253c75d6d /tsconfig.web.json | |
initial commit
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/*" + ] + } + } +} |
