oxc/tasks
DonIsaac e386b62331 feat(semantic): check for invalid type import assignments (#4097)
Adds checks to `TSImportEqualsDeclaration` for invalid use of `import type` modifier.

```ts
import { Foo } from './foo'
namespace Bar {
  export class Baz {}
}

import type A = Foo.Baz;        // not allowed
import type B = Bar.Baz;        // not allowed
import type C = require('./c'); // allowed
```
2024-07-08 03:14:22 +00:00
..
ast_codegen fix(ast_codegen, ast): visit ExpressionArrayElement as Expression. (#4061) 2024-07-06 00:29:36 +08:00
benchmark chore(deps): update npm packages (#4092) 2024-07-07 18:33:47 +00:00
common chore: improve some format by running cargo +nightly fmt 2024-06-19 00:48:30 +08:00
coverage feat(semantic): check for invalid type import assignments (#4097) 2024-07-08 03:14:22 +00:00
javascript_globals chore: improve some format by running cargo +nightly fmt 2024-06-19 00:48:30 +08:00
lint_rules chore(ci): now we mark both ts alias and eslint rules. (#3813) 2024-06-22 04:55:34 +00:00
minsize chore: do not compile test crates that have no tests 2024-06-24 00:20:04 +08:00
prettier_conformance chore: improve some format by running cargo +nightly fmt 2024-06-19 00:48:30 +08:00
rulegen chore(tasks/rulegen): generate options for fix cases (#4076) 2024-07-07 03:01:55 +00:00
transform_conformance fix(codegen): preserve parentheses from AST instead calculating from operator precedence (#4055) 2024-07-05 14:01:17 +08:00
website feat(linter): support vitest/no-disabled-tests (#3717) 2024-06-24 15:16:32 +00:00
libs.txt refactor(benchmark): use more complicated files (#1811) 2023-12-25 17:27:02 +08:00