feat(core): Lazy-load nodes and credentials to reduce baseline memory usage (#4577)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2022-11-23 16:20:28 +01:00
committed by GitHub
parent f63cd3b89e
commit b6c57e19fc
71 changed files with 1102 additions and 1279 deletions

View File

@@ -15,7 +15,7 @@
"scripts": {
"clean": "rimraf dist .turbo",
"build": "vite build",
"build:vue:typecheck": "vue-tsc --emitDeclarationOnly",
"typecheck": "vue-tsc --emitDeclarationOnly",
"test": "vitest run",
"test:ci": "vitest run --coverage",
"test:dev": "vitest",
@@ -69,7 +69,7 @@
"vue-loader": "^15.9.7",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.7",
"vue-tsc": "^0.34.8",
"vue-tsc": "^0.35.0",
"vue2-boring-avatars": "0.3.4",
"webpack": "^4.46.0"
},

View File

@@ -8,6 +8,7 @@
"importHelpers": true,
"skipLibCheck": true,
"allowJs": true,
"incremental": false,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"types": ["webpack-env", "vitest/globals"],