Files
JRedisDesktop/tsconfig.web.json

29 lines
694 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.web.tsbuildinfo",
"target": "es2023",
"lib": ["ESNext", "DOM"],
"module": "ESNext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Path alias */
"paths": {
"@renderer/*": ["./src/renderer/src/*"]
},
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src/renderer/src/**/*", "src/preload/**/*.d.ts"]
}