2018-11-07 18:07:04 +03:00
|
|
|
{
|
2021-08-26 22:32:59 +03:00
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
2021-09-10 22:37:04 +03:00
|
|
|
"target": "es2016",
|
2021-08-26 22:32:59 +03:00
|
|
|
"noEmitOnError": false,
|
|
|
|
"removeComments": true,
|
2021-09-04 16:33:51 +03:00
|
|
|
"lib": ["es5", "ES2015", "ES2016"],
|
2021-08-26 22:32:59 +03:00
|
|
|
"alwaysStrict": true,
|
2021-08-30 14:04:48 +03:00
|
|
|
"strict": true,
|
2021-09-05 01:03:51 +03:00
|
|
|
"moduleResolution": "node",
|
2021-09-15 20:18:23 +03:00
|
|
|
"module": "ES6",
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"transform": "ts-auto-mock/transformer",
|
|
|
|
"cacheBetweenTests": false
|
|
|
|
}
|
|
|
|
]
|
2021-08-26 22:32:59 +03:00
|
|
|
},
|
2021-08-27 19:57:11 +03:00
|
|
|
"typedocOptions": {
|
2021-09-04 16:33:51 +03:00
|
|
|
"entryPoints": ["src"]
|
2021-08-27 19:57:11 +03:00
|
|
|
},
|
2021-09-05 01:03:51 +03:00
|
|
|
"include": ["src/**/*"]
|
2021-09-04 16:33:51 +03:00
|
|
|
}
|