supplier_central_frontend/tsconfig.app.json
vickytechkey c4cf3a1d2e
All checks were successful
Beta CI/CD Pipeline / build-and-test (push) Successful in 56s
Beta CI/CD Pipeline / deploy-beta (push) Successful in 6s
feat: design alignment and full UI implementation of dashboard and product wizards
2026-08-18 12:22:31 +05:30

26 lines
657 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],
"module": "esnext",
"types": ["vite/client"],
"allowArbitraryExtensions": true,
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}