diff --git a/tsconfig.json b/tsconfig.json index ee9b1e1e37..96eb349028 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ */ { "compilerOptions": { + "baseUrl": "./", "allowJs": true, "checkJs": false, "strict": true, @@ -11,10 +12,14 @@ "noImplicitOverride": true, "module": "esnext", "moduleResolution": "node", - + "outDir": "dist", "paths": { // matches the alias in webpack config, so that types for those imports are visible. "@/*": ["src/*"] } - } + }, + "exclude": [ + "node_modules", + "dist" + ] }