/internal route

This commit is contained in:
Jacob Nguyen
2024-04-29 00:08:26 -05:00
parent 924810e1ac
commit 925ff60134
3 changed files with 3 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ const writeTsConfig = async (format: 'cjs' | 'esm', configPath: string, fw: File
compilerOptions: {
//module determines top level await. CJS doesn't have that abliity afaik
module: format === 'cjs' ? 'node' : 'esnext',
moduleResolution: 'node',
moduleResolution: 'node16',
strict: true,
skipLibCheck: true,
...target,