* WIP: SMTP server * Card and minor changes in Server --------- Co-authored-by: KM Koushik <koushikmohan1996@gmail.com>
25 lines
1.6 KiB
JSON
25 lines
1.6 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Language and Environment */
|
|
"target": "es2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
"module": "commonjs", /* Specify what module code is generated. */
|
|
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. */
|
|
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
|
|
/* Modules */
|
|
"rootDir": "./src", /* Specify the root folder within your source files. */
|
|
"outDir": "./dist", /* Specify an output folder for all emitted files. */
|
|
|
|
/* Emit */
|
|
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
"removeComments": true, /* Disable emitting comments. */
|
|
|
|
/* Type Checking */
|
|
"strict": true, /* Enable all strict type-checking options. */
|
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
},
|
|
"include": ["src/**/*.ts"], /* Include all TypeScript files in the src directory. */
|
|
"exclude": ["node_modules"] /* Exclude node_modules from compilation. */
|
|
}
|