From b0c36821d1dcf362f14c99ca3741e7d03aea0a04 Mon Sep 17 00:00:00 2001 From: Jorropo Date: Tue, 4 Sep 2018 11:01:54 +0200 Subject: Add video recomandation by tags (#1001) * Recommendation by tags (thx bradsk88) Thx bradsk88 for the help. * Prefer jest-preset-angular to skip need for babel config * Fix jest --- client/src/tsconfig.spec.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 client/src/tsconfig.spec.json (limited to 'client/src/tsconfig.spec.json') diff --git a/client/src/tsconfig.spec.json b/client/src/tsconfig.spec.json new file mode 100644 index 000000000..cefee1781 --- /dev/null +++ b/client/src/tsconfig.spec.json @@ -0,0 +1,17 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "outDir": "../out-tsc/spec", + "module": "commonjs", + "target": "es5", + "baseUrl": "", + "allowJs": true + }, + "files": [ + "test.ts" + ], + "include": [ + "**/*.spec.ts", + "**/*.d.ts" + ] +} -- cgit v1.2.3