core/apps/webapp/tsconfig.json
Harshith Mullapudi 060668e8c0 Fix: echo v2
2025-05-27 23:12:05 +05:30

35 lines
795 B
JSON

{
"exclude": [],
"include": [
"remix.env.d.ts",
"global.d.ts",
"**/*.ts",
"**/*.tsx",
"tailwind.config.js",
"tailwind.config.js"
],
"compilerOptions": {
"types": ["@remix-run/node", "vite/client"],
"lib": ["DOM", "DOM.Iterable", "DOM.AsyncIterable", "ES2020"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "esnext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2020",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@/*": ["./*"]
},
"noEmit": true
}
}