Skip to content

Commit 289600d

Browse files
committed
chore: basic support for running tests in vscode
1 parent a0155f5 commit 289600d

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@
7979
"resolutions": {
8080
"@types/express-serve-static-core": "4.17.38"
8181
},
82+
"jest": {
83+
"projects": [
84+
"<rootDir>/packages/*",
85+
"<rootDir>/modules/*"
86+
]
87+
},
8288
"collective": {
8389
"type": "opencollective",
8490
"url": "https://opencollective.com/accounts-js",

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"declaration": true,
99
"pretty": true,
1010
"strict": true,
11-
"esModuleInterop": true
11+
"esModuleInterop": true,
12+
"emitDecoratorMetadata": true,
13+
"experimentalDecorators": true
1214
}
1315
}

0 commit comments

Comments
 (0)