tsconfig.json 650 B

1234567891011121314151617181920212223242526
  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": ["dom", "esnext"],
  18. "incremental": true,
  19. "skipLibCheck": true,
  20. "paths": {
  21. "/@/*": ["src/*"],
  22. "/@design/": ["src/design/index.less"]
  23. }
  24. },
  25. "exclude": ["node_modules", "dist"]
  26. }