tsconfig.json 881 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": false,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "skipLibCheck": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "sourceMap": true,
  13. "allowJs": true,
  14. "baseUrl": ".",
  15. "types": [
  16. "webpack-env"
  17. ],
  18. "paths": {
  19. "@/*": [
  20. "src/*"
  21. ],
  22. "@infish/*": [
  23. "infish/*"
  24. ]
  25. },
  26. "lib": [
  27. "esnext",
  28. "dom",
  29. "dom.iterable",
  30. "scripthost"
  31. ]
  32. },
  33. "files": [
  34. "node_modules/queentree/typing.d.ts",
  35. "node_modules/queenjs/framework/typing.d.ts",
  36. ],
  37. "include": [
  38. "src/**/*.ts",
  39. "src/**/*.tsx",
  40. "src/**/*.vue",
  41. "tests/**/*.ts",
  42. "tests/**/*.tsx",
  43. "src/styles/theme.js",
  44. ],
  45. "exclude": [
  46. "node_modules"
  47. ]
  48. }