-
Notifications
You must be signed in to change notification settings - Fork 0
/
storage
78 lines (72 loc) · 1.97 KB
/
storage
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
overridesss: [
{
files: [
'src/test/**',
],
env: {
mocha: true, // now **/*.test.js files' env has both es6 *and* jest
},
// Can't extend in overrides: https://github.com/eslint/eslint/issues/8813
// "extends": ["plugin:jest/recommended"]
// plugins: ['mocha'],
// rules: {
// 'jest/no-disabled-tests': 'warn',
// 'jest/no-focused-tests': 'error',
// 'jest/no-identical-title': 'error',
// 'jest/prefer-to-have-length': 'warn',
// 'jest/valid-expect': 'error',
// },
},
],
yarn add -D [email protected] [email protected]
"webpack": "5.19.0",
yarn add -D webpack-cli@latest
yarn add -D webpack@latest
webpack-cli 4.5.0
webpack 5.21.1
broke
webpack-cli 4.5.0
yarn add -D [email protected]
good
yarn add -D [email protected]
broke
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"skipFiles": ["<node_internals>/**", "**/node_modules/**", "**/resources/app/out/vs/**", "**/we've come a long way/**"],
"preLaunchTask": "${defaultBuildTask}",
"smartStep": true,
"sourceMaps": true,
"trace": true
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "npm: test-watch"
}
]
}