tsconfig.json 723 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "compilerOptions": {
  3. // Type Checking
  4. "strict": true,
  5. "exactOptionalPropertyTypes": true,
  6. "noImplicitAny": false,
  7. // Language and Environment
  8. "target": "ESNext",
  9. // Modules
  10. "moduleResolution": "node",
  11. // Completeness
  12. "skipLibCheck": true,
  13. // Interop Constraints
  14. "esModuleInterop": true,
  15. "forceConsistentCasingInFileNames": true,
  16. // Emit
  17. "sourceMap": true,
  18. // "strictFunctionTypes": false,
  19. "isolatedModules": false,
  20. "baseUrl": ".",
  21. "paths": {
  22. "@/*": ["components/*"],
  23. },
  24. "lib": ["esnext", "dom"]
  25. },
  26. "include": [
  27. "**/*.js",
  28. "**/*.d.ts",
  29. "**/*.ts",
  30. "**/*.vue",
  31. "typings"
  32. ],
  33. "exclude": ["node_modules"]
  34. }