-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
14 lines (14 loc) · 1.04 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
"module": "ESNext" /* Specify what module code is generated. */,
"moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. NO SE MODIFICA EN NUESTRO CASO */,
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
"outDir": "./dist/" /* Specify an output folder for all emitted files. */,
"noEmitOnError": true /* Disable emitting files if any type checking errors are reported. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"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'. */
},
"include": ["src/**/*.ts"]
}