Revision 0.32.33 (#905)

* Use ES2020 Target

* Version
This commit is contained in:
sinclairzx81
2024-06-17 19:42:53 +09:00
committed by GitHub
parent 7ef8e833d5
commit f065cfc6d1
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ declare function shell(command: string): Promise<void>
export async function compile(target: string) {
const options = [
`--outDir ${target}`,
'--target ESNext',
'--target ES2020',
'--module ESNext',
'--declaration',
].join(' ')