freshyo/packages/web-components/tsconfig.json
2026-09-06 18:05:20 +05:30

21 lines
527 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": true,
"paths": {
"@/*": ["./src/*"],
"@packages/shared": ["../shared"],
"@packages/shared/*": ["../shared/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.tsx"],
"exclude": ["node_modules", "dist"]
}