tsconfig.json 640 B

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