В Angular 7 мне пришлось предпринять следующие шаги:
(1) импорт
import pkg from '../../package.json'
(2) tsconfig.json
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
AND more compiler options here
}
}
(3)angular.json (чтобы прекратить работу ng lint при импорте JSON)
Единственное изменение здесь - добавить ... "**/*.json"
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**",
"**/*.json"
]
}
}