Skip to content

Commit

Permalink
fix: tsconfig should list its own path
Browse files Browse the repository at this point in the history
relative to this current project. See microsoft/TypeScript#25430
  • Loading branch information
Priyajeet Hora committed Jan 16, 2020
1 parent ec2351d commit 52572a3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -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/**/*"]
}

0 comments on commit 52572a3

Please sign in to comment.