development -> main #1

Open
Christopher.Hase wants to merge 93 commits from development into main
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 94c21a6146 - Show all commits

View file

@ -12,7 +12,7 @@ spec:
http: http:
paths: paths:
- path: /iching(/|$)(.*) - path: /iching(/|$)(.*)
pathType: Prefix pathType: ImplementationSpecific
backend: backend:
service: service:
name: iching-service name: iching-service

View file

@ -1,8 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES6", "target": "ES6",
"module": "CommonJS", "module": "ES6",
"moduleResolution": "Bundler",
"outDir": "dist", "outDir": "dist",
"strict": true "strict": true,
"esModuleInterop": true
} }
} }