-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update tests-FAIL-swc to newest swc call pattern. tests still fail
- Loading branch information
1 parent
40b049e
commit 0a0c995
Showing
4 changed files
with
29 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
{ | ||
"$schema": "https://swc.rs/schema.json", | ||
"test": ".*.ts$", | ||
"jsc": { | ||
"parser": { | ||
"syntax": "typescript", | ||
"decorators": true | ||
"importMeta": true | ||
}, | ||
"transform": null | ||
"target": "es2022", | ||
"experimental": { | ||
"keepImportAssertions": true | ||
} | ||
}, | ||
"module": { | ||
"type": "es6" | ||
} | ||
"isModule": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
{ | ||
"esm": true, | ||
"$schema": "https://json.schemastore.org/tsconfig", | ||
"extends": "@tsconfig/node20/tsconfig.json", | ||
"compilerOptions": { | ||
"allowSyntheticDefaultImports": true, | ||
"module": "ESNext", | ||
"moduleResolution": "node" | ||
"lib": ["es2023"], | ||
"module": "NodeNext", | ||
"moduleResolution": "NodeNext", | ||
"target": "esnext", | ||
"resolveJsonModule": true | ||
} | ||
} |