You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
578 B
27 lines
578 B
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
"include": [
|
|
"src/renderer/src/env.d.ts",
|
|
"src/renderer/src/**/*",
|
|
"src/renderer/src/**/*.vue",
|
|
"src/preload/*.d.ts",
|
|
"src/types/**/*",
|
|
"config/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"#": ["src/types/index"],
|
|
"#/*": ["src/types/*"],
|
|
"config": ["config/index.ts"],
|
|
"config/*": ["config/*"],
|
|
"@renderer/*": [
|
|
"src/renderer/src/*"
|
|
],
|
|
"@res/*": [
|
|
"resources/*"
|
|
],
|
|
}
|
|
}
|
|
}
|
|
|