I got to know how to fix the 'Invalid 'reference' directive syntax' issue after you cloned the repo, did 'npm install', and did 'npm start'.
The solution is to update the package.json, update the typescript version:
package.json:
"devDependencies": {
"typescript": "^4.6.3"
}
So, update the typescript version to the latest one (the current latest version is 4.6.3).
I got to know how to fix the 'Invalid 'reference' directive syntax' issue after you cloned the repo, did 'npm install', and did 'npm start'.
The solution is to update the package.json, update the typescript version:
package.json:
"devDependencies": {
"typescript": "^4.6.3"
}
So, update the typescript version to the latest one (the current latest version is 4.6.3).