tsconfig.json 875 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "include": [],
  3. "compilerOptions": {
  4. "resolveJsonModule": true,
  5. "target": "ES2022",
  6. "module": "ESNext",
  7. "lib": ["ES2022", "DOM"],
  8. "importHelpers": true,
  9. "declaration": true,
  10. "declarationMap": true,
  11. "sourceMap": true,
  12. "strict": true,
  13. "noImplicitAny": true,
  14. "strictNullChecks": true,
  15. "strictFunctionTypes": true,
  16. "strictPropertyInitialization": true,
  17. "noImplicitThis": true,
  18. "alwaysStrict": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "noImplicitReturns": true,
  22. "noFallthroughCasesInSwitch": true,
  23. "moduleResolution": "bundler",
  24. "baseUrl": "./",
  25. "paths": {
  26. "*": ["src/*", "node_modules/*"],
  27. "@websee/*":["packages/*/src"]
  28. },
  29. "jsx": "react-jsx",
  30. "esModuleInterop": true,
  31. "skipLibCheck": true,
  32. "forceConsistentCasingInFileNames": true
  33. }
  34. }