We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf7f068 commit ced45b0Copy full SHA for ced45b0
digitable-storybook/tsconfig.json
@@ -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