tsconfig.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "_p/*": [
  33. "src/pages/*"
  34. ]
  35. },
  36. "lib": [
  37. "esnext",
  38. "dom",
  39. "dom.iterable",
  40. "scripthost"
  41. ]
  42. },
  43. "include": [
  44. "src/**/*.ts",
  45. "src/**/*.tsx",
  46. "src/**/*.vue",
  47. "tests/**/*.ts",
  48. "tests/**/*.tsx"
  49. ],
  50. "exclude": [
  51. "node_modules"
  52. ]
  53. }