tsconfig.template.json 690 B

1234567891011121314151617181920212223242526272829303132
  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. "exclude": [
  18. "node_modules",
  19. "migration.ts",
  20. "src/plugins/**/ui/*",
  21. "admin-ui",
  22. "src/plugins/**/dashboard/*",
  23. "src/gql/*",
  24. "vite.*.*ts"
  25. ],
  26. "ts-node": {
  27. "files": true
  28. },
  29. "references": [{
  30. "path": "./tsconfig.dashboard.json"
  31. }]
  32. }