tsconfig.json 665 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "strict": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strictFunctionTypes": false,
  10. "jsx": "react",
  11. "baseUrl": ".",
  12. "allowJs": true,
  13. "esModuleInterop": true,
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "experimentalDecorators": true,
  17. "lib": [
  18. "dom",
  19. "esnext"
  20. ],
  21. "incremental": true,
  22. "skipLibCheck": true,
  23. "paths": {
  24. "/@/*": [
  25. "src/*"
  26. ]
  27. }
  28. },
  29. "exclude": [
  30. "node_modules",
  31. "dist",
  32. "**/*.js"
  33. ]
  34. }