refactor: Enable TypeScript support in this repo (#1459)

This commit is contained in:
Braden MacDonald
2024-10-07 10:23:24 -07:00
committed by GitHub
parent 356b183c5c
commit 9a83d67d78
84 changed files with 213 additions and 134 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "@edx/typescript-config",
"compilerOptions": {
"outDir": "dist",
"baseUrl": "./src",
"paths": {
"*": ["*"],
"@src/*": ["*"]
}
},
"include": ["*.js", ".eslintrc.js", "src/**/*", "plugins/**/*"],
"exclude": ["dist", "node_modules"]
}