Skip to content

Commit

Permalink
chore: set tsconfig baseUrl & paths
Browse files Browse the repository at this point in the history
  • Loading branch information
uoon-dev committed Aug 18, 2021
1 parent 98bb4ed commit bb183cb
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
{
"extends": "@tsconfig/docusaurus/tsconfig.json",
"include": ["src/"],
"compilerOptions": {
"types": ["node", "@emotion/react/types/css-prop"],
"resolveJsonModule": true
}
"extends": "@tsconfig/docusaurus/tsconfig.json",
"include": ["src/"],
"compilerOptions": {
"resolveJsonModule": true,
"baseUrl": "./src",
"paths": {
"*": [
"./*"
]
},
"types": [
"node",
"@emotion/react/types/css-prop"
]
}
}

0 comments on commit bb183cb

Please sign in to comment.