This commit is contained in:
Dylan Pizzo
2025-02-24 22:52:14 -08:00
parent 7120058916
commit bd1ef4a08c
13 changed files with 1086 additions and 87 deletions

21
tsconfig.json Normal file
View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"target": "es2017",
"module": "es2022",
"lib": ["esnext"],
"moduleResolution": "bundler",
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist"
},
"include": ["src"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}