-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
19 lines (19 loc) · 1.04 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2015", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
/* Modules */
"module": "CommonJS", /* Specify what module code is generated. */
"rootDir": "./", /* Specify the root folder within your source files. */
/* JavaScript Support */
/*"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
"outDir": "pub", /* Specify an output folder for all emitted files. */
"esModuleInterop": true,
"noEmit": false,
"moduleResolution": "Node10",
"declaration": true,
"declarationMap": true,
"resolveJsonModule": true
},
"exclude": ["node_modules", "pub", " tsconfig.json", "enmav.config.ts", "vupd.js"]
}