From 4a524d4155ad16899e41097fe02a30809c857fc1 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 7 Mar 2023 05:51:59 -0600 Subject: [PATCH] Add typescript compilation settings. --- tsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5d0e373 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "outDir": "./dist/", + "noImplicitAny": true, + "module": "es6", + "target": "es5", + "jsx": "react", + "allowJs": true, + "moduleResolution": "node", + } +} \ No newline at end of file