tsconfig.json 646 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "include": ["./apps/**/*.ts", "./core/**/*.ts"],
  4. "compilerOptions": {
  5. "types": ["node"],
  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. }
  24. }
  25. }