fix preprocessor.ts dependencies intellisense

This commit is contained in:
Jacob Nguyen
2023-08-28 10:57:19 -05:00
committed by GitHub
parent 88e2bbf6c8
commit 2ece63cb8b

View File

@@ -44,7 +44,7 @@ const writeTsConfig = async (format: 'cjs' | 'esm', configPath: string, fw: File
const target = format === 'esm' ? { target: 'esnext' } : {};
const sernTsConfig = {
"compilerOptions": {
"moduleResolution": "bundler",
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true,
...target,