diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-28 21:06:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-29 01:06:09 +0000 |
| commit | 2afbc1aa39c37b688ea1e0c47161c2fcdefc05ab (patch) | |
| tree | 783e4363b2838ff89d700387042ba5a79dd413ac /tests/testdata/import_attributes/static_import.ts | |
| parent | d183533404bf7fe062331e414d5c2bc41e49d5e4 (diff) | |
feat: deprecate import assertions (#25281)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'tests/testdata/import_attributes/static_import.ts')
| -rw-r--r-- | tests/testdata/import_attributes/static_import.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/testdata/import_attributes/static_import.ts b/tests/testdata/import_attributes/static_import.ts index 1538a4a2f..f585b893f 100644 --- a/tests/testdata/import_attributes/static_import.ts +++ b/tests/testdata/import_attributes/static_import.ts @@ -1,6 +1,5 @@ import data1 from "./data.json" with { type: "json" }; -// deno-lint-ignore no-import-assertions -import data2 from "./data.json" assert { type: "json" }; +import data2 from "./data.json" with { type: "json" }; console.log(data1); console.log(data2); |
