From ced45b06fdc73e9639d912a273918e5a0008ad46 Mon Sep 17 00:00:00 2001 From: Uzhastin-Nikita Date: Wed, 16 Mar 2022 16:54:07 +0300 Subject: [PATCH] feat: addition tsconfig in repo --- digitable-storybook/tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 digitable-storybook/tsconfig.json 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"] +}