playing with typescript (probably all wrong)

This commit is contained in:
2021-06-05 16:58:56 -04:00
parent 23debefee2
commit 0a9e0d789e
10 changed files with 388 additions and 153 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "es2015",
"lib": [
"esnext"
],
"module": "commonjs",
"moduleResolution": "node",
"strict": false,
"allowJs": true,
"noEmit": true,
"esModuleInterop": true
},
"exclude": [
"node_modules"
],
"include": [
"**/*.ts"
]
}