node-typescript-generator
Version:
This is a Node JS project generator with Express and all necessary libraries in Typescript.
22 lines (20 loc) • 1.6 kB
JSON
{
"compilerOptions": {
"target": "es2016", /* Node.js supports modern ECMAScript features */
"module": "commonjs", /* Use CommonJS module system for Node.js */
"lib": ["es2016"], /* Include ES2018 library definitions */
"rootDir": "src", /* Specify the root folder within your source files */
"outDir": "build", /* Specify an output folder for all emitted files */
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules */
"resolveJsonModule": true, /* Enable importing .json files directly */
"strict": true, /* Enable all strict type-checking options */
"noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type */
"strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined' */
"strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible */
"strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function */
"noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any' */
"skipLibCheck": true /* Skip type checking all .d.ts files */
},
"include": ["src/**/*.ts"], /* Specify the files to include in the compilation */
"exclude": ["node_modules"] /* Specify the files to exclude from the compilation */
}