core/apps/webapp/tsconfig.json
Harshith Mullapudi 8d9ddcf375
Fix: core cli to work with core repo (#26)
* Fix: core cli to work with core repo

* Fix: cli working and mcp proxy
2025-07-22 10:17:40 +05:30

38 lines
881 B
JSON

{
"exclude": [],
"include": [
"remix.env.d.ts",
"global.d.ts",
"**/*.ts",
"**/*.tsx",
"tailwind.config.js",
"tailwind.config.js",
"trigger.config.ts",
"server.mjs"
],
"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,
"strictPropertyInitialization": false,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@/*": ["./*"]
},
"noEmit": true
}
}