You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 546B

12345678910111213141516171819202122
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "include": ["./**/*.ts"],
  4. "compilerOptions": {
  5. "types": ["node"],
  6. "allowSyntheticDefaultImports": true,
  7. "moduleResolution": "node",
  8. "target": "ESNext",
  9. "module": "esnext",
  10. "declaration": true,
  11. "strict": true,
  12. "noImplicitAny": false,
  13. "resolveJsonModule": true
  14. },
  15. "ts-node": {
  16. // these options are overrides used only by ts-node
  17. // same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
  18. "compilerOptions": {
  19. "module": "commonjs"
  20. }
  21. }
  22. }