From 1b27c62a93bfe8d79509a72b8d452afe0f79111a Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Wed, 25 Jan 2023 00:15:36 -0500 Subject: [PATCH] chore: add initial project files for typescript conversion --- .eslintrc | 3 +++ .gitignore | 1 + .vscode/settings.json | 5 +++++ tsconfig.json | 14 ++++++++++++++ 4 files changed, 23 insertions(+) create mode 100644 .eslintrc create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 tsconfig.json diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..7f384d7 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,3 @@ +{ + "extends": "tale" +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2658d7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c0ac00a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..201cd09 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,14 @@ +{ + "exclude": ["dist"], + "compilerOptions": { + "baseUrl": "./src", + "rootDir": "./src", + "outDir": "./dist", + "target": "ESNext", + "module": "CommonJS", + "moduleResolution": "Node", + "skipLibCheck": true, + "strict": true, + "noEmit": true + } +}