You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.server.json 332B

1234567891011121314
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "outDir": "./lib",
  5. "module": "commonjs",
  6. "types": ["node"]
  7. },
  8. "include": ["src/backend/**/*", "test/**/*"],
  9. "exclude": ["node_modules", "**/__tests__/*"],
  10. "angularCompilerOptions": {
  11. "entryModule": "./src/app/app.server.module#AppServerModule"
  12. }
  13. }