forked from syntaxbullet/aurorabot
- Remove 31 unused packages: React, Tailwind, Radix UI, etc. - Clean up web/tsconfig.json (remove JSX, DOM lib) - Remove old web/dist/ build artifacts Web dashboard is now API-only, no UI dependencies needed
38 lines
897 B
JSON
38 lines
897 B
JSON
{
|
|
"compilerOptions": {
|
|
// Environment setup & latest features
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "Preserve",
|
|
"moduleDetection": "force",
|
|
"allowJs": true,
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noEmit": true,
|
|
// Best practices
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@shared/*": [
|
|
"../shared/*"
|
|
],
|
|
"@bot/*": [
|
|
"../bot/*"
|
|
]
|
|
},
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noPropertyAccessFromIndexSignature": false
|
|
},
|
|
"exclude": ["node_modules"]
|
|
} |