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
2026-05-08 00:00:00 +00: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/*"]
}
}
}