chore: add initial project files for typescript conversion

This commit is contained in:
Aarnav Tale
2023-01-25 00:15:36 -05:00
parent 25403f865e
commit 1b27c62a93
4 changed files with 23 additions and 0 deletions

3
.eslintrc Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "tale"
}

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
node_modules/

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
}

14
tsconfig.json Normal file
View File

@@ -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
}
}