-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
14 lines (14 loc) · 1.01 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
"compilerOptions": {
"target": "ES2017", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"module": "CommonJS", /* Facilitates the utilization of a module manager in the compiled JavaScript code, CommonJS is supported and is a standard in Node.js */
"esModuleInterop": true, /* Enables the compilation of ES6 modules to CommonJS modules. */
"forceConsistentCasingInFileNames": true, /* Enforces case-sensitive file naming */
"strict": true, /* Enable all strict type-checking options. */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"outDir": "./dist", /* Destination directory for the compiled output */
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
}
}