diff options
Diffstat (limited to 'packages/tests/tsconfig.json')
-rw-r--r-- | packages/tests/tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/tests/tsconfig.json b/packages/tests/tsconfig.json new file mode 100644 index 000000000..91a74b4be --- /dev/null +++ b/packages/tests/tsconfig.json | |||
@@ -0,0 +1,27 @@ | |||
1 | { | ||
2 | "extends": "../../tsconfig.base.json", | ||
3 | "compilerOptions": { | ||
4 | "outDir": "./dist", | ||
5 | "baseUrl": "./", | ||
6 | "rootDir": "src", | ||
7 | "tsBuildInfoFile": "./dist/.tsbuildinfo", | ||
8 | "paths": { | ||
9 | "@tests/*": [ "src/*" ] | ||
10 | } | ||
11 | }, | ||
12 | "references": [ | ||
13 | { "path": "../core-utils" }, | ||
14 | { "path": "../ffmpeg" }, | ||
15 | { "path": "../models" }, | ||
16 | { "path": "../node-utils" }, | ||
17 | { "path": "../typescript-utils" }, | ||
18 | { "path": "../server-commands" }, | ||
19 | { "path": "../../server/tsconfig.lib.json" } | ||
20 | ], | ||
21 | "include": [ | ||
22 | "./src/**/*.ts" | ||
23 | ], | ||
24 | "exclude": [ | ||
25 | "./fixtures" | ||
26 | ] | ||
27 | } | ||