diff --git a/tsconfig.json b/tsconfig.json index f86db5fc112..fb3862cfc98 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { + "extends": "@box/frontend/ts/tsconfig", "compilerOptions": { - "outDir": "./es" + "baseUrl": ".", + "outDir": "es", + "rootDir": "src" }, - "extends": "@box/frontend/ts/tsconfig", - "files": ["./.storybook/typings.d.ts"] + "exclude": ["src/**/*.js", "node_modules", "es", "dist"], + "files": [".storybook/typings.d.ts"], + "include": ["src/**/*"] }