This repo is archived. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
OctoLauncher/tsconfig.web.json
T
OctoTeam ec0557204c
Build check / build (push) Has been cancelled
Initial commit
2026-05-07 20:06:01 -07:00

23 lines
480 B
JSON

{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"include": [
"src/renderer/env.d.ts",
"src/common/**/*.ts",
"src/renderer/**/*",
"src/main/types.d.ts",
"src/preload/window.d.ts"
],
"compilerOptions": {
"composite": true,
"jsx": "react-jsx",
"ignoreDeprecations": "6.0",
"baseUrl": ".",
"paths": {
"~common/*": ["./src/common/*"],
"~main/*": ["./src/main/*"],
"~renderer/*": ["./src/renderer/*"],
"~build/*": ["./build/*"]
}
}
}