Terminal / tsconfig.json
GitHub Action
sync: backend da GitHub 2026-05-18T11:59:53Z
e6fbc88
Raw
History Blame Contribute Delete
560 Bytes
{
"extends": "../../tsconfig.base.json",
"include": ["src/**/*"],
"exclude": [
"node_modules", "build", "dist", "**/*.test.ts",
"src/components/ui",
"src/hooks/use-toast.ts",
"src/pages/not-found.tsx",
"src/lib/utils.ts"
],
"compilerOptions": {
"noEmit": true,
"jsx": "preserve",
"lib": ["esnext", "dom", "dom.iterable"],
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"moduleResolution": "bundler",
"types": ["node", "vite/client"],
"paths": {
"@/*": ["./src/*"]
}
}
}