From e6d32e827af2567a91dd346e4a45519ddde4e3bc Mon Sep 17 00:00:00 2001 From: a flying potato <80830782+a-flying-potato@users.noreply.github.com> Date: Sat, 10 Sep 2022 20:09:26 +0200 Subject: [PATCH] :robot: config(typescript): Create tsconfig.json. These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/d09fbf6436be892b61bbe02454e1d7d7229c50d8/src/transforms/typescript:configure.js Please contact the author of the transform if you believe there was an error. --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8e3ca20 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "compilerOptions": { + "allowJs": true, + "emitDeclarationOnly": true, + "declaration": true, + "outDir": "types", + "checkJs": true, + "target": "es2020", + "module": "es2020", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true + }, + "include": [ + "src/**/*" + ] +}