2016-03-26 23:57:37 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
2017-03-10 08:54:55 +01:00
|
|
|
"strictNullChecks": true,
|
2016-03-26 23:57:37 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2017-12-29 01:11:59 +00:00
|
|
|
"outDir": "./build",
|
|
|
|
"rootDir": "./src",
|
2017-07-07 14:31:08 +01:00
|
|
|
"module": "commonjs",
|
2017-12-06 01:03:14 +00:00
|
|
|
"declaration": true,
|
2017-12-19 21:42:17 +00:00
|
|
|
"noUnusedLocals": true,
|
2018-08-07 01:38:15 +01:00
|
|
|
"noUnusedParameters": true,
|
2017-12-29 01:11:59 +00:00
|
|
|
"baseUrl": "./src",
|
2017-12-19 21:42:17 +00:00
|
|
|
"paths" : {
|
|
|
|
"/*": [
|
|
|
|
"./*"
|
|
|
|
]
|
|
|
|
}
|
2016-03-27 03:09:50 +01:00
|
|
|
},
|
|
|
|
"exclude": [
|
2017-12-29 01:11:59 +00:00
|
|
|
"node_modules",
|
2017-09-17 00:00:41 +01:00
|
|
|
"tests",
|
2018-08-21 02:46:21 +01:00
|
|
|
"**/_*",
|
2019-01-15 00:23:01 +00:00
|
|
|
"demo",
|
2019-01-16 13:34:32 +00:00
|
|
|
"scripts",
|
|
|
|
"webpack.config.ts"
|
2018-08-08 22:51:54 +01:00
|
|
|
],
|
|
|
|
"typedocOptions": {
|
2018-08-09 11:54:05 +01:00
|
|
|
"mode": "file",
|
2018-08-08 22:51:54 +01:00
|
|
|
"out": "docs/api",
|
|
|
|
"exclude": "test",
|
|
|
|
"theme": "default",
|
|
|
|
"ignoreCompilerErrors": true,
|
|
|
|
"excludePrivate": true,
|
|
|
|
"excludeProtected": true,
|
|
|
|
"excludeNotExported": true,
|
|
|
|
"excludeExternals": false,
|
|
|
|
"target": "ES6",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"suppressExcessPropertyErrors": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"module": "commonjs"
|
|
|
|
}
|
2017-03-10 08:54:55 +01:00
|
|
|
}
|