Açıklama Yok

tsconfig.json 495B

123456789101112131415161718
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": ["@tsconfig/node22/tsconfig.json", "@vue/tsconfig/tsconfig.dom.json"],
  4. "compilerOptions": {
  5. "experimentalDecorators": true,
  6. "allowSyntheticDefaultImports": true,
  7. "noImplicitOverride": true,
  8. "sourceMap": true,
  9. "composite": true,
  10. "baseUrl": "./",
  11. "types": ["node", "jsdom"],
  12. "paths": {
  13. "@/*": ["./src/*"]
  14. }
  15. },
  16. "include": ["*.ts", "src/**/*.ts", "src/**/*.vue", "tests/**/*.ts"]
  17. }