Added the default typescript configuration file

This commit is contained in:
Mathias Wagner 2022-09-06 19:56:30 +02:00
parent 4412c90db9
commit 95f8bd7fff
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44
2 changed files with 11 additions and 1 deletions

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}

View File

@ -1,6 +1,6 @@
/** The predefined environment values */
const envValue: string[] = [
"MONGOOSE_STRING"
"MONGOOSE_STRING", "API_PORT"
]
/** Checks if the provided value is registered in process.env */