tsconfig.template.json 608 B

12345678910111213141516171819202122232425262728
  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. "src/plugins/**/dashboard/*",
  22. "admin-ui",
  23. "vite.*.*ts"
  24. ],
  25. "ts-node": {
  26. "files": true
  27. }
  28. }