38 lines
809 B
JSON
38 lines
809 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/server.ts",
|
|
"src/lib/api/**/*",
|
|
"src/lib/db/**/*"
|
|
],
|
|
"exclude": [
|
|
"src/components/**/*",
|
|
"src/pages/**/*",
|
|
"src/contexts/**/*",
|
|
"src/hooks/**/*",
|
|
"src/utils/**/*",
|
|
"src/lib/utils.ts",
|
|
"src/main.tsx",
|
|
"src/App.tsx"
|
|
]
|
|
}
|