tsconfig.template.json 500 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "allowSyntheticDefaultImports": true,
  5. "esModuleInterop": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "strictPropertyInitialization": false,
  9. "target": "es2019",
  10. "strict": true,
  11. "sourceMap": false,
  12. "skipLibCheck": true,
  13. "outDir": "./dist",
  14. "baseUrl": "./"
  15. },
  16. "exclude": ["node_modules", "migration.ts", "src/plugins/**/ui/*", "admin-ui"],
  17. "ts-node": {
  18. "files": true
  19. }
  20. }