tsconfig.json 728 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "lib": [
  5. "dom",
  6. "dom.iterable",
  7. "esnext"
  8. ],
  9. "allowJs": true,
  10. "skipLibCheck": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "strict": false,
  14. "forceConsistentCasingInFileNames": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "module": "esnext",
  17. "moduleResolution": "node",
  18. "resolveJsonModule": true,
  19. "isolatedModules": true,
  20. "noEmit": true,
  21. "jsx": "react-jsx",
  22. "emitDecoratorMetadata": true,
  23. "experimentalDecorators": true,
  24. "baseUrl": ".",
  25. "paths": {
  26. "@/*": [
  27. "./src/*"
  28. ],
  29. "@@/*": [
  30. "./*"
  31. ]
  32. }
  33. },
  34. "include": [
  35. "src"
  36. ]
  37. }