forked from stryker-mutator/stryker-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workspace.code-workspace
92 lines (92 loc) · 1.52 KB
/
workspace.code-workspace
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"folders": [
{
"path": "packages/core"
},
{
"path": "packages/grunt-stryker"
},
{
"path": "packages/api"
},
{
"path": "packages/babel-transpiler"
},
{
"path": "packages/html-reporter"
},
{
"path": "packages/jasmine-framework"
},
{
"path": "packages/jasmine-runner"
},
{
"path": "packages/javascript-mutator"
},
{
"path": "packages/jest-runner"
},
{
"path": "packages/karma-runner"
},
{
"path": "packages/mocha-framework"
},
{
"path": "packages/mocha-runner"
},
{
"path": "packages/mutator-specification"
},
{
"path": "packages/typescript"
},
{
"path": "packages/vue-mutator"
},
{
"path": "packages/webpack-transpiler"
},
{
"path": "packages/wct-runner"
},
{
"path": "packages/util"
},
{
"path": "packages/test-helpers"
},
{
"path": "e2e"
},
{
"path": "perf"
},
{
"path": ".",
"name": "parent"
}
],
"settings": {
"typescript.tsdk": "node_modules\\typescript\\lib",
"files.exclude": {
".git": true,
".tscache": true,
"{src,test}/**/*.d.ts": true, //base mapping not possible: https://github.com/Microsoft/vscode/issues/40850
"*.d.ts": true, // needed to exclude d.ts files in api
"**/*.js": {
"when": "$(basename).ts"
},
"**/**/*.js": { // HACK! Cannot reuse same key, but this key means essentially the same
"when": "$(basename).tsx"
},
"**/*.map": {
"when": "$(basename)"
}
},
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
}
}
}