tsconfig.template.json 758 B

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