Closed
Description
Before You File a Bug Report Please Confirm You Have Done The Following...
- I have tried restarting my IDE and the issue persists.
- I have updated to the latest version of the packages.
- I have searched for related issues and found none that matched my issue.
- I have read the FAQ and my problem is not listed.
Relevant Package
typescript-estree
Playground Link
No response
Repro Code
import { parse } from "@typescript-eslint/typescript-estree"
const ast = parse('await(1)', {
project: false,
filePath: 'foo.mts'
})
console.log(ast.body[0].expression)
ESLint Config
N/A
tsconfig
Expected Result
The expression should be AwaitExpression
instead of CallExpression
.
Actual Result
As described above.
Additional Info
No response
Versions
package | version |
---|---|
@typescript-eslint/typescript-estree |
7.8.0 |
TypeScript |
5.4.5 |
node |
20 |