Skip to content

Commit ced45b0

Browse files
feat: addition tsconfig in repo
1 parent bf7f068 commit ced45b0

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

digitable-storybook/tsconfig.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"compilerOptions": {
3+
"module": "commonjs",
4+
"moduleResolution": "node",
5+
"target": "ESNext",
6+
"removeComments": true,
7+
"allowSyntheticDefaultImports": true,
8+
"jsx": "react",
9+
"allowJs": true,
10+
"baseUrl": "./",
11+
"esModuleInterop": true,
12+
"resolveJsonModule": true,
13+
"downlevelIteration": true,
14+
"paths": {
15+
"*": ["./*"]
16+
},
17+
"lib": ["esnext", "dom", "dom.iterable"],
18+
"sourceMap": true,
19+
"noImplicitAny": false
20+
},
21+
"exclude": ["node_modules", "build"],
22+
"include": ["./src", "webpack.config.ts", "types/*.d.ts"]
23+
}

0 commit comments

Comments
 (0)