We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc7866b commit d20c097Copy full SHA for d20c097
.gitignore
@@ -128,6 +128,3 @@ dist
128
.yarn/build-state.yml
129
.yarn/install-state.gz
130
.pnp.*
131
-
132
-# Extra
133
-tsconfig.json
tsconfig.json
@@ -0,0 +1,20 @@
1
+{
2
+ "compilerOptions": {
3
+ "target": "ES2020",
4
+ "module": "CommonJS",
5
+ "moduleResolution": "node",
6
+ "strict": true,
7
+ "noImplicitAny": true,
8
+ "strictNullChecks": true,
9
+ "esModuleInterop": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "declaration": true,
12
+ "isolatedModules": true,
13
+ "noEmit": true,
14
+ "outDir": "./dist",
15
+ "rootDir": "./src",
16
+ "types": ["node"]
17
+ },
18
+ "include": ["src/**/*.ts"],
19
+ "exclude": ["node_modules", "dist"]
20
+}
0 commit comments