Currently I have wasp 0.17.1 on my local. (MacOS)
Earlier in package.json, I was having typescript version as below
"devDependencies": {
"typescript": "^5.1.0",
}
Now since, I upgrade to wasp 0.17.1, the error is showing that I must have typescript version 5.8.2. So I upgraded to 5.8.2 then when running wasp start, I found these errors.
[ Server ] src/queries/getF2Pflag.ts(3,34): error TS5097: An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.
[ Server ] src/routes/apis/index.ts(8,92): error TS5097: An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.
[ Server ] src/routes/apis/index.ts(9,92): error TS5097: An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.
[ Server ] src/routes/apis/index.ts(93,51): error TS2554: Expected 2 arguments, but got 3.
[ Server ] src/routes/apis/index.ts(111,51): error TS2554: Expected 2 arguments, but got 3.
[ Server ] src/routes/apis/index.ts(129,49): error TS2554: Expected 2 arguments, but got 3.
I have followed migration guideline but currently out of idea...