stack/packages/stack-cli/tsconfig.json
mantrakp04 df4ac5a603 feat: update TypeScript configurations and improve app functionality
- Added "allowImportingTsExtensions" to tsconfig.json files in dashboard, local-config-updater, and stack-cli for enhanced TypeScript module handling.
- Refactored the AppDetailsPageClient component to simplify the enable/disable functionality by removing asynchronous alert wrappers.
- Updated the configuration update function to enable waiting for sync, improving the reliability of remote environment updates.

These changes enhance TypeScript support and improve the user experience in the dashboard application.
2026-06-03 13:12:07 -07:00

25 lines
563 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"declaration": true,
"target": "ES2021",
"lib": ["ES2021", "ES2022.Error"],
"module": "ES2020",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noErrorTruncation": true,
"skipLibCheck": true,
"strict": true,
"sourceMap": true,
"declarationMap": true,
"types": [
"vitest/importMeta"
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}