* tmp commit * now it works * fix: various of type and import issues * refactor: move test * refactor: rename with stage- prefix * refactor: all monorepo packages * refactor: fix all build * refactor: fix missing dep * fix: remove unnecessary deps * fix: netlify publish * fix: hf space deploy --------- Co-authored-by: LemonNeko <chheese048@gmail.com>
24 lines
452 B
JSON
24 lines
452 B
JSON
{
|
|
"extends": [
|
|
"@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
"../../tsconfig.json"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@renderer/*": [
|
|
"src/renderer/src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/renderer/src/shims.ts",
|
|
"src/renderer/src/**/*",
|
|
"src/renderer/src/**/*.vue",
|
|
"src/preload/*.d.ts"
|
|
]
|
|
}
|