tsconfig.json 917 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "noImplicitAny": false,
  6. "useDefineForClassFields": true,
  7. "moduleResolution": "node",
  8. "strict": true,
  9. "jsx": "preserve",
  10. "sourceMap": true,
  11. "resolveJsonModule": true,
  12. "isolatedModules": true,
  13. "esModuleInterop": true,
  14. "skipLibCheck": true,
  15. "importHelpers": true,
  16. "strictFunctionTypes": false,
  17. "allowSyntheticDefaultImports": true,
  18. "forceConsistentCasingInFileNames": true,
  19. "allowJs": false,
  20. // "incremental": true,
  21. "lib": [
  22. "esnext",
  23. "dom",
  24. "ES6"
  25. ]
  26. },
  27. "include": [
  28. "packages",
  29. "typings"
  30. ],
  31. "exclude": [
  32. "node_modules",
  33. "**/dist",
  34. "**/__tests__/**/*",
  35. "**/test/**",
  36. "**/tests/**"
  37. ],
  38. "files": [],
  39. "references": [
  40. {
  41. "path": "./tsconfig.node.json"
  42. },
  43. {
  44. "path": "./tsconfig.app.json"
  45. }
  46. ]
  47. }