test(server): move tests out of src folder (#4366)

This commit is contained in:
LongYinan
2023-09-15 00:34:14 -07:00
committed by GitHub
parent b5e8fecfd0
commit 1aec1ce7d0
36 changed files with 233 additions and 159 deletions

View File

@@ -0,0 +1,21 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"rootDir": ".",
"outDir": "../dist/tests"
},
"references": [
{
"path": "../tsconfig.json"
},
{
"path": "../../../tests/kit/tsconfig.json"
}
],
"include": ["."],
"exclude": []
}