Skip to content

Commit

Permalink
feat: addition tsconfig in repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzhastin-Nikita committed Mar 17, 2022
1 parent bf7f068 commit ced45b0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions digitable-storybook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "ESNext",
"removeComments": true,
"allowSyntheticDefaultImports": true,
"jsx": "react",
"allowJs": true,
"baseUrl": "./",
"esModuleInterop": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"paths": {
"*": ["./*"]
},
"lib": ["esnext", "dom", "dom.iterable"],
"sourceMap": true,
"noImplicitAny": false
},
"exclude": ["node_modules", "build"],
"include": ["./src", "webpack.config.ts", "types/*.d.ts"]
}

0 comments on commit ced45b0

Please sign in to comment.