How to import my package.json in my Angular app.module?
up vote
0
down vote
favorite
I want to access the version property in my package.json file.
How to import my package.json in my Angular 6 app.module?
thx
Lino
angular
add a comment |
up vote
0
down vote
favorite
I want to access the version property in my package.json file.
How to import my package.json in my Angular 6 app.module?
thx
Lino
angular
2
Did you try just to import JSON "module"?import { version } from '../../package.json'
– dfsq
Nov 8 at 8:40
I get this error message: webpack: Compiled successfully. ERROR in src/app/app.component.ts(5,25): error TS2307: Cannot find module '../../package.json'.
– Lino
Nov 8 at 11:25
hackernoon.com/import-json-into-typescript-8d465beded79
– Roman Pokrovskij
Nov 8 at 13:54
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to access the version property in my package.json file.
How to import my package.json in my Angular 6 app.module?
thx
Lino
angular
I want to access the version property in my package.json file.
How to import my package.json in my Angular 6 app.module?
thx
Lino
angular
angular
asked Nov 8 at 8:34
Lino
185
185
2
Did you try just to import JSON "module"?import { version } from '../../package.json'
– dfsq
Nov 8 at 8:40
I get this error message: webpack: Compiled successfully. ERROR in src/app/app.component.ts(5,25): error TS2307: Cannot find module '../../package.json'.
– Lino
Nov 8 at 11:25
hackernoon.com/import-json-into-typescript-8d465beded79
– Roman Pokrovskij
Nov 8 at 13:54
add a comment |
2
Did you try just to import JSON "module"?import { version } from '../../package.json'
– dfsq
Nov 8 at 8:40
I get this error message: webpack: Compiled successfully. ERROR in src/app/app.component.ts(5,25): error TS2307: Cannot find module '../../package.json'.
– Lino
Nov 8 at 11:25
hackernoon.com/import-json-into-typescript-8d465beded79
– Roman Pokrovskij
Nov 8 at 13:54
2
2
Did you try just to import JSON "module"?
import { version } from '../../package.json'– dfsq
Nov 8 at 8:40
Did you try just to import JSON "module"?
import { version } from '../../package.json'– dfsq
Nov 8 at 8:40
I get this error message: webpack: Compiled successfully. ERROR in src/app/app.component.ts(5,25): error TS2307: Cannot find module '../../package.json'.
– Lino
Nov 8 at 11:25
I get this error message: webpack: Compiled successfully. ERROR in src/app/app.component.ts(5,25): error TS2307: Cannot find module '../../package.json'.
– Lino
Nov 8 at 11:25
hackernoon.com/import-json-into-typescript-8d465beded79
– Roman Pokrovskij
Nov 8 at 13:54
hackernoon.com/import-json-into-typescript-8d465beded79
– Roman Pokrovskij
Nov 8 at 13:54
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
draft saved
draft discarded
draft saved
draft discarded
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204022%2fhow-to-import-my-package-json-in-my-angular-app-module%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
2
Did you try just to import JSON "module"?
import { version } from '../../package.json'– dfsq
Nov 8 at 8:40
I get this error message: webpack: Compiled successfully. ERROR in src/app/app.component.ts(5,25): error TS2307: Cannot find module '../../package.json'.
– Lino
Nov 8 at 11:25
hackernoon.com/import-json-into-typescript-8d465beded79
– Roman Pokrovskij
Nov 8 at 13:54