tsconfig.json 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "commonjs",
  5. "strict": false,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "alwaysStrict": false,
  10. "experimentalDecorators": true,
  11. "skipLibCheck": true,
  12. "esModuleInterop": true,
  13. "allowSyntheticDefaultImports": true,
  14. "sourceMap": true,
  15. "baseUrl": ".",
  16. "allowJs": true,
  17. "outDir": "./",
  18. "types": [
  19. "webpack-env"
  20. ],
  21. "paths": {
  22. "@/*": [
  23. "src/*"
  24. ]
  25. },
  26. "lib": [
  27. "esnext",
  28. "dom",
  29. "dom.iterable",
  30. "scripthost"
  31. ]
  32. },
  33. "include": [
  34. "src/**/*.ts",
  35. "src/**/*.tsx",
  36. "src/**/*.vue",
  37. ],
  38. "exclude": [
  39. "node_modules"
  40. ]
  41. }