tsconfig.template.json 720 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "module": "nodenext",
  4. "moduleResolution": "nodenext",
  5. "allowSyntheticDefaultImports": true,
  6. "esModuleInterop": true,
  7. "emitDecoratorMetadata": true,
  8. "experimentalDecorators": true,
  9. "strictPropertyInitialization": false,
  10. "target": "es2019",
  11. "strict": true,
  12. "sourceMap": false,
  13. "skipLibCheck": true,
  14. "outDir": "./dist",
  15. "baseUrl": "./"
  16. },
  17. "include": ["src/**/*.ts"],
  18. "exclude": [
  19. "node_modules",
  20. "migration.ts",
  21. "src/plugins/**/ui/*",
  22. "admin-ui",
  23. "src/plugins/**/dashboard/*",
  24. "src/gql/*",
  25. "vite.*.*ts"
  26. ],
  27. "ts-node": {
  28. "files": true
  29. },
  30. "references": [{
  31. "path": "./tsconfig.dashboard.json"
  32. }]
  33. }