tsconfig.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "skipLibCheck": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "strictFunctionTypes": false,
  13. "allowJs": true,
  14. "sourceMap": true,
  15. "suppressImplicitAnyIndexErrors": true,
  16. "noUnusedLocals": false,
  17. "noUnusedParameters": false,
  18. "experimentalDecorators": true,
  19. "forceConsistentCasingInFileNames": true,
  20. "baseUrl": ".",
  21. "types": [
  22. "webpack-env",
  23. "node"
  24. ],
  25. "paths": {
  26. "@/*": [
  27. "src/*"
  28. ],
  29. "_c/*": [
  30. "src/components/*"
  31. ],
  32. "_@/*": [
  33. "src/pages/index/*"
  34. ],
  35. "_v/*": [
  36. "src/pages/index/views/*"
  37. ],
  38. "_p/*": [
  39. "src/pages/*"
  40. ]
  41. },
  42. "lib": [
  43. "esnext",
  44. "dom",
  45. "dom.iterable",
  46. "scripthost"
  47. ]
  48. },
  49. "include": [
  50. "src/**/*.ts",
  51. "src/**/*.tsx",
  52. "src/**/*.vue",
  53. "tests/**/*.ts",
  54. "tests/**/*.tsx"
  55. ],
  56. "exclude": [
  57. "node_modules",
  58. "dist",
  59. "**/*.js"
  60. ]
  61. }