api-client/packages/hoppscotch-selfhost-web/tsconfig.json
Shreyas 9861ee84ad
feat(desktop): settings phase 0 - infra and update check (#6172)
Co-authored-by: VicenzoMF <81040684+VicenzoMF@users.noreply.github.com>
2026-04-28 00:36:06 +05:30

31 lines
1 KiB
JSON

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["ESNext", "DOM"],
"skipLibCheck": true,
"noEmit": true,
"paths": {
"@hoppscotch/common": ["../hoppscotch-common/src/index.ts"],
"@hoppscotch/common/*": ["../hoppscotch-common/src/*"],
"@app/platform/*": ["./src/platform/*"],
"@app/services/*": ["./src/services/*"],
"@app/components/*": ["./src/components/*"],
"@app/composables/*": ["./src/composables/*"],
"@app/helpers/*": ["./src/helpers/*"],
"@app/api/*": ["./src/api/*"],
"@app/lib/*": ["./src/lib/*"],
"@app/kernel/*": ["./src/kernel/*"]
},
"types": ["vite/client", "unplugin-icons/types/vue"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}