2017-11-21 11:29:09 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "es6",
|
|
|
|
|
"module": "commonjs",
|
2017-11-21 15:09:26 +00:00
|
|
|
"declaration": true,
|
2017-11-21 11:29:09 +00:00
|
|
|
"outDir": "dist",
|
2017-11-21 15:09:26 +00:00
|
|
|
"sourceMap": true,
|
2018-10-07 14:59:07 +01:00
|
|
|
"strict": true,
|
2020-12-03 13:55:02 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"strictBindCallApply": true,
|
2019-09-25 19:10:59 +01:00
|
|
|
"strictPropertyInitialization": false,
|
2020-12-03 13:55:02 +00:00
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2019-09-25 19:10:59 +01:00
|
|
|
"types": ["node"]
|
2017-11-21 11:29:09 +00:00
|
|
|
},
|
|
|
|
|
"include": [
|
2020-11-23 15:43:27 +00:00
|
|
|
"lib/**/*.ts",
|
2021-09-23 17:14:23 +01:00
|
|
|
"examples/**/*.ts",
|
2017-11-21 11:29:09 +00:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
|
|
|
|
]
|
2019-09-25 19:10:59 +01:00
|
|
|
}
|