From 5abf631ffc3f94436a4551f7d2e53e889dd1489a Mon Sep 17 00:00:00 2001 From: ZyLacx Date: Mon, 27 Dec 2021 17:16:08 +0100 Subject: [PATCH] Create tsconfig.json --- node_modules/dotenv/types/tsconfig.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 node_modules/dotenv/types/tsconfig.json diff --git a/node_modules/dotenv/types/tsconfig.json b/node_modules/dotenv/types/tsconfig.json new file mode 100644 index 0000000..012b05d --- /dev/null +++ b/node_modules/dotenv/types/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": ["es6"], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "noEmit": true, + "baseUrl": ".", + "paths": { + "dotenv": ["."] + } + } +}