tsconfig.json 718 B

1234567891011121314151617181920212223242526
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "include": ["./apps/**/*.ts", "./core/**/*.ts", "./*.d.ts"],
  4. "compilerOptions": {
  5. "types": ["cypress", "jest", "node", "vue"],
  6. "outDir": "./dist/",
  7. "target": "ESNext",
  8. "module": "esnext",
  9. "moduleResolution": "node",
  10. // Allow ts to import js files
  11. "allowJs": true,
  12. "allowSyntheticDefaultImports": true,
  13. "declaration": false,
  14. "noImplicitAny": false,
  15. "resolveJsonModule": true,
  16. "strict": true,
  17. },
  18. "ts-node": {
  19. // these options are overrides used only by ts-node
  20. // same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
  21. "compilerOptions": {
  22. "module": "commonjs",
  23. "verbatimModuleSyntax": false
  24. }
  25. }
  26. }