b440c38886
- some indirect dependencies install @types packages which are not compatible with the older typescript. - adjusted test's tsconfig to not pick these up automatically, as the actual .d.ts does not depend on these external types.
18 lines
300 B
JSON
18 lines
300 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es6"],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noEmit": true,
|
|
|
|
"baseUrl": ".",
|
|
"types": [],
|
|
"paths": {
|
|
"handlebars": ["."]
|
|
}
|
|
}
|
|
}
|