mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 09:33:10 -07:00
20 lines
470 B
JSON
20 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"types": ["node"],
|
|
"outDir": "dist-electron",
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/main/**/*", "src/preload/**/*"],
|
|
"exclude": ["node_modules", "dist", "dist-electron"]
|
|
}
|