chore: redefine tsc config

This commit is contained in:
Rodney, Tiara 2025-04-25 17:50:00 +02:00
parent fcda3b1952
commit bd4febe6f3
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 5 additions and 3 deletions

View file

@ -1,14 +1,14 @@
{
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"module": "nodenext",
"strict": true,
"sourceMap": false,
"esModuleInterop": true,
"resolveJsonModule": false,
"allowJs": false,
"declaration": true,
"declarationMap": true,
"declaration": false,
"declarationMap": false,
"outDir": "build/release",
"baseUrl": "./",
"paths": { "*": ["node/modules/*"] },