金币系统前端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
689 B

  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
  4. "target": "ES2022",
  5. "lib": ["ES2023"],
  6. "module": "ESNext",
  7. "skipLibCheck": true,
  8. "composite": true,
  9. "noEmitOnError": false,
  10. /* Bundler mode */
  11. "moduleResolution": "Bundler",
  12. "allowImportingTsExtensions": true,
  13. "isolatedModules": true,
  14. "moduleDetection": "force",
  15. "noEmit": true,
  16. "emitDeclarationOnly": false,
  17. /* Linting */
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "noUncheckedSideEffectImports": true,
  22. "baseUrl": ".",
  23. "paths": {
  24. "@/*": ["src/*"]
  25. }
  26. }
  27. }