mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-07-03 14:06:12 +02:00
113b8e3f66
Co-authored-by: Chubby Granny Chaser <weak.fern2638@heliokroger.com>
31 lines
834 B
JSON
31 lines
834 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": [
|
|
"electron.vite.config.*",
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/locales/index.ts",
|
|
"src/shared/**/*",
|
|
"src/types/**/*",
|
|
"src/big-picture/vite-scope-big-picture-css.ts"
|
|
],
|
|
"exclude": ["src/**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"composite": true,
|
|
"types": ["electron-vite/node"],
|
|
"baseUrl": ".",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"paths": {
|
|
"@main/*": ["src/main/*"],
|
|
"@renderer/*": ["src/renderer/*"],
|
|
"@types": ["src/types/index.ts"],
|
|
"@locales": ["src/locales/index.ts"],
|
|
"@resources": ["src/resources/index.ts"],
|
|
"@shared": ["src/shared/index.ts"]
|
|
}
|
|
}
|
|
}
|