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 863f2a9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"extends": "@box/frontend/ts/tsconfig",
"compilerOptions": {
"outDir": "./es"
"baseUrl": ".",
"outDir": "es",
"rootDir": "src"
},
"extends": "@box/frontend/ts/tsconfig",
"files": ["./.storybook/typings.d.ts"]
"files": [".storybook/typings.d.ts"],
"include": ["src/**/*.ts", "src/**/*.tsx"]
}

0 comments on commit 863f2a9

Please sign in to comment.