fix: add ES2021 to ts compiler

This commit is contained in:
Derrick Hammer 2023-06-25 04:53:56 -04:00
parent 2183387a3f
commit c15b279d63
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,11 @@ export default async function (): Promise<PresetAsset> {
prettier: {
singleQuote: false,
},
tsconfig: {
compilerOptions: {
lib: ["ES2021"],
},
},
},
};
}