statebuddy/tsconfig.json
2025-10-20 16:29:48 +02:00

16 lines
338 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "Preserve",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["dist", "node_modules"]
}