-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.esm.json
19 lines (19 loc) · 1.25 KB
/
tsconfig.esm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compileOnSave": true,
"compilerOptions": {
/* Visit https://aka.ms/tsconfig to read more about this file */
"target": "es5", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
"experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
"module": "es6", /* Specify what module code is generated. */
"outDir": "dist/esm", /* Specify an output folder for all emitted files. */
"removeComments": false, /* Disable emitting comments. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
"strict": true, /* Enable all strict type-checking options. */
"skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true, /* Skip type checking all .d.ts files. */
"moduleResolution": "node",
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "test"]
}