Skip to content

Commit

Permalink
Fixed tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpartaPT committed May 22, 2024
1 parent b1e1f2d commit 3bac3da
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"compilerOptions": {
"allowJs": true,
"module": "CommonJS",
"module": "NodeNext",
"target": "ES2022",
"moduleResolution": "Node10",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"outDir": "tmp",
"baseUrl": ".",
"paths": {
"@spt-aki/*": ["./types/*"]
}
},
"include": ["src/*", "src/**/*"]
"exclude": ["node_modules", "dist", "tmp"]
}

0 comments on commit 3bac3da

Please sign in to comment.