-
I'm seeing the following error with the 2.0.0 release when using with `tsc` and `ts-node`:
```
Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es…
-
Gulp version:
`CLI version: 2.2.0,
Local version: 4.0.2`
When using "es2019" as lib in compilerOptions it says:
`error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7'…
-
i have noticed that dox does not support `async function`s, examples:
when used as a static function:
```ts
/**
* test1
*/
Class.test = async function() {
// test
}
```
it is recogni…
-
## Description
- I needed a link to trigger a turbo stream request i.e.
```
Accept: 'text/vnd.turbo-stream.html, text/html, application/xhtml+xml'
```
- To that end, i added `data-turbo-str…
-
今のままだと、ブラウザでエラーが走る
```
Error: Form responses must redirect to another location
at K.requestSucceededWithResponse (turbo.es2017-esm.js:1162:21)
at W.receive (turbo.es2017-esm.js:846:21)
at …
-
Hey, thanks for making this, it's awesome.
What would it take to make it support `es2018` as an option for `lib` and `target`. And also `strict` being in the tsconfig, which currently fails:
``…
-
At the moment all code compiled with webpack-config has to be valid ES5, including third-party libraries from npm. Any code that is invalid ES5 will fail at the uglify step, and produce an error messa…
-
1. 异步函数声明: `async function foo() {}`
2. 异步函数表达式: `const foo = async function () {}`
3. 异步函数定义:`let obj = { async foo() {} }`
4. 异步箭头函数: `const foo = async () => {}`
-
As of today, I'm seeing mostly empty pages on initial page load:
![image](https://user-images.githubusercontent.com/663378/175517975-33c7a58e-6b13-4849-9865-568d95faa688.png)
This is accompani…
-
Under `node12`, a top-level await results in
```
Top-level 'await' expressions are only allowed when the 'module' option is set to 'es2022', 'esnext', 'system', or 'nodenext', and the 'target' opt…