2017-11-21 11:29:09 +00:00
|
|
|
{
|
2023-11-29 16:01:50 +00:00
|
|
|
"compilerOptions": {
|
2025-01-17 23:37:54 +00:00
|
|
|
"target": "es2020",
|
2023-11-29 16:01:50 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
|
"strictNullChecks": true,
|
2025-01-17 23:37:54 +00:00
|
|
|
"noFallthroughCasesInSwitch": false,
|
2023-11-29 16:01:50 +00:00
|
|
|
"types": [
|
|
|
|
|
"node"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"lib/**/*.ts",
|
|
|
|
|
"examples/**/*.ts"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
2025-01-17 23:37:54 +00:00
|
|
|
"node_modules",
|
|
|
|
|
"lib/**/*.spec.ts"
|
2023-11-29 16:01:50 +00:00
|
|
|
]
|
2019-09-25 19:10:59 +01:00
|
|
|
}
|