2018-11-07 18:07:04 +03:00
|
|
|
{
|
2021-08-26 22:32:59 +03:00
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
2021-08-28 21:02:42 +03:00
|
|
|
"target": "es5",
|
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,
|
|
|
|
"module": "ES6"
|
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-04 16:33:51 +03:00
|
|
|
"include": ["src/**/*", "test/**/*"]
|
|
|
|
}
|