diff options
Diffstat (limited to 'tests/testdata/import_attributes/json_with_shebang.ts')
-rw-r--r-- | tests/testdata/import_attributes/json_with_shebang.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/testdata/import_attributes/json_with_shebang.ts b/tests/testdata/import_attributes/json_with_shebang.ts index 0a785210f..9524026bc 100644 --- a/tests/testdata/import_attributes/json_with_shebang.ts +++ b/tests/testdata/import_attributes/json_with_shebang.ts @@ -1,4 +1,3 @@ -// deno-lint-ignore no-import-assertions -import json from "./json_with_shebang.json" assert { type: "json" }; +import json from "./json_with_shebang.json" with { type: "json" }; console.log(json); |