I added the following lines to my app.ts file but I get the error that TypeScript cannot find the module nativescript-i18n:
import * as global from 'globals';
import * as i18n from 'nativescript-i18n';
// Initialize i18n
declare var global : any;
I've tried removing node_modules and then reinstalling but no luck :( using import * as i18n from 'nativescript-i18n/angular' works, however I'm not using angular.
I added the following lines to my app.ts file but I get the error that TypeScript cannot find the module nativescript-i18n:
I've tried removing node_modules and then reinstalling but no luck :( using
import * as i18n from 'nativescript-i18n/angular'
works, however I'm not using angular.