Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "esnext",
  5. "strict": true,
  6. "strictNullChecks": false,
  7. "strictPropertyInitialization": false,
  8. // "implicitProjectConfig.experimentalDecorator": true,
  9. "jsx": "preserve",
  10. "importHelpers": true,
  11. "moduleResolution": "node",
  12. "experimentalDecorators": true,
  13. "esModuleInterop": true,
  14. "allowSyntheticDefaultImports": true,
  15. "plugins": [{ "name": "ts-vue-plugin" }],
  16. "sourceMap": true,
  17. "baseUrl": ".",
  18. "types": [
  19. "webpack-env",
  20. "jest"
  21. ],
  22. "paths": {
  23. "@/*": [
  24. "src/*"
  25. ]
  26. },
  27. "lib": [
  28. "esnext",
  29. "dom",
  30. "dom.iterable",
  31. "scripthost"
  32. ]
  33. },
  34. "include": [
  35. "src/**/*.ts",
  36. "src/**/*.tsx",
  37. "src/**/*.vue",
  38. "tests/**/*.ts",
  39. "tests/**/*.tsx"
  40. ],
  41. "exclude": [
  42. "node_modules"
  43. ]
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement