mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-12-25 01:21:44 +08:00
test: fix typescript setup in tests (#5014)
This commit is contained in:
parent
9d7e5b1ddb
commit
848e851973
3 changed files with 8 additions and 2 deletions
|
|
@ -18,5 +18,6 @@
|
|||
"ts-node": {
|
||||
"files": true
|
||||
},
|
||||
"files": ["../src/types/types.d.ts", "../../shared-types/types.d.ts"],
|
||||
"include": ["./**/*.spec.ts", "./setup-tests.ts"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,5 +18,6 @@
|
|||
"ts-node": {
|
||||
"files": true
|
||||
},
|
||||
"files": ["../src/ts/types/types.d.ts", "../../shared-types/types.d.ts"],
|
||||
"include": ["./**/*.spec.ts", "./setup-tests.ts"]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@
|
|||
"name":"frontend",
|
||||
"path":"frontend",
|
||||
},
|
||||
{
|
||||
"name":"shared-types",
|
||||
"path":"shared-types",
|
||||
},
|
||||
{
|
||||
"name":"root",
|
||||
"path": "./"
|
||||
|
|
@ -17,10 +21,10 @@
|
|||
"files.exclude": {
|
||||
"frontend": true,
|
||||
"backend": true,
|
||||
"shared-types": true,
|
||||
},
|
||||
"jest.disabledWorkspaceFolders": [
|
||||
"root"
|
||||
"root","shared-types"
|
||||
]
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue