{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": ["src", "tests", "http-client", "./*.js", "./*.ts"],
"exclude": ["node_modules/*", "radicle-httpd/*"],
"compilerOptions": {
"noEmit": true,
"target": "es2023",
"module": "es2022",
"types": ["vite/client"],
"sourceMap": true,
"moduleResolution": "bundler",
"strict": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useDefineForClassFields": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"paths": {
"@app/*": ["./src/*"],
"@http-client": ["./http-client/index.ts"],
"@http-client/*": ["./http-client/*"],
"@public/*": ["./public/*"],
"@tests/*": ["./tests/*"]
}
}
}