Added paths to the tsconfig.json

This commit is contained in:
Mathias Wagner 2023-01-14 20:32:13 +01:00
parent 13b23a2cbd
commit 12f7f859b6
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -2,11 +2,15 @@
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"baseUrl": "src",
"rootDir": "src",
"outDir": "dist",
"paths": {
"@utils/*": ["utils/*"],
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}
}