diff --git a/digitable-storybook/tsconfig.json b/digitable-storybook/tsconfig.json new file mode 100644 index 0000000..907a991 --- /dev/null +++ b/digitable-storybook/tsconfig.json @@ -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"] +}