Specifically add types to tsconfig to fix build issue

This commit is contained in:
Marcus Eide
2020-04-01 15:39:52 +02:00
parent b2de67b6e6
commit 76fe4bf14d
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"extends": "@spotify/web-scripts/config/tsconfig.json",
"extends": "../../tsconfig.json",
"include": ["src"],
"compilerOptions": {
"baseUrl": "src",
+3 -1
View File
@@ -5,6 +5,8 @@
"allowJs": true,
"noEmit": false,
"declarationMap": true,
"incremental": true
"incremental": true,
"typeRoots": ["node_modules/@types"],
"types": ["node", "jest"]
}
}