chore: Fix import.meta.vitest warnings

This commit is contained in:
Sidharth Vinod 2023-12-08 09:38:54 +05:30
parent 60f92dcdbc
commit aa4bfa0727
No known key found for this signature in database
GPG Key ID: FB5CCD378D3907CD
3 changed files with 7 additions and 1 deletions

View File

@ -8,6 +8,8 @@ const buildType = (packageName: string) => {
out.length > 0 && console.log(out.toString()); out.length > 0 && console.log(out.toString());
} catch (e) { } catch (e) {
console.error(e); console.error(e);
e.stdout.length > 0 && console.error(e.stdout.toString());
e.stderr.length > 0 && console.error(e.stderr.toString());
} }
}; };

View File

@ -65,6 +65,9 @@ export const getBuildConfig = (options: MermaidBuildOptions): BuildOptions => {
minify, minify,
logLevel: 'info', logLevel: 'info',
chunkNames: `chunks/${outFileName}/[name]-[hash]`, chunkNames: `chunks/${outFileName}/[name]-[hash]`,
define: {
'import.meta.vitest': 'undefined',
},
}); });
if (core) { if (core) {

View File

@ -2,7 +2,8 @@
"extends": "../../tsconfig.json", "extends": "../../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"rootDir": "../..", "rootDir": "../..",
"outDir": "./dist" "outDir": "./dist",
"types": ["vitest/importMeta", "vitest/globals"]
}, },
"include": ["./src/**/*.ts"], "include": ["./src/**/*.ts"],
"typeRoots": ["./src/types"] "typeRoots": ["./src/types"]