This commit is contained in:
2021-06-27 20:47:10 -05:00
parent cbd4520e12
commit 39850d8660
3 changed files with 75 additions and 10 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"files": [
"index.d.ts"
],
"compilerOptions": {
"target": "esnext",
"lib": ["esnext"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "./",
"typeRoots": ["./"],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
}
}