mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/ExamShowboard-Legacy.git
synced 2025-04-28 20:56:34 +00:00
38 lines
870 B
JSON
38 lines
870 B
JSON
{
|
|
"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"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@renderer/*": [
|
|
"src/renderer/src/*"
|
|
]
|
|
},
|
|
"target": "ESNext",
|
|
"jsx": "preserve",
|
|
"lib": ["DOM", "ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-vue-layouts/client",
|
|
"unplugin-vue-router/client"
|
|
],
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|