3

It is a Basic Assembly script project. But I facing this error message in my tsconfig.json file.

{
    "extends": "assemblyscript/std/assembly.json",
    "include": [
    "./**/*.ts"
] 
}

It is my package.json

{
   "devDependencies": {
   "assemblyscript": "^0.27.1"
}
Ahsan
  • 73
  • 5

1 Answers1

5

You error seems to be described in this AssemblyScript issue. The stated workaround from there is this:

For now, you can disable these newer types by changing your project's tsconfig.json and setting strictBindCallApply to false like this:

{
  "extends": "assemblyscript/std/assembly.json",
  "include": [
    "./**/*.ts"
  ],
  "compilerOptions": {
    "strictBindCallApply": false
  }
}
TachyonicBytes
  • 700
  • 1
  • 8