How to get serverTimestamp via Angularfire or firebase

Doing just:

import * as firebase from 'firebase';

Imports all of firebase modules which is not a good practice for production. The best practice is to use bare imports like so:

import * as firebase from 'firebase/app'; 
import 'firebase/firestore';

This will only import Firestore module in your app. You can then do:

get timestamp() {
return firebase.firestore.FieldValue.serverTimestamp();
};

I have this working in my project with :

import { AngularFirestore } from 'angularfire2/firestore';
import { CollectionReference, Query } from '@firebase/firestore-types'; // Not usefull for your problem
import * as firebase from 'firebase';

@Injectable()
export class MyService {

  constructor(private db: AngularFirestore) {
      console.log("firebase.firestore.FieldValue.serverTimestamp()");
      console.log(firebase.firestore.FieldValue.serverTimestamp());
  }
}

And in my packages :

"firebase": "^4.12.1",
"angularfire2": "^5.0.0-rc.5-next"

I don't have this in packages.json file:

"@firebase/app"


What helped at the end was uninstalling everything firebase related, so as I mentioned in my question:

"@firebase/app": "^0.1.10",
"angularfire2": "^5.0.0-rc.6.0",
"firebase": "^4.13.1",

And running npm install firebase angularfire2 --save again.

This gave me:

"angularfire2": "^5.0.0-rc.7",
"firebase": "^5.0.1",

Which fixed all my problems.

Import firebase as:

import * as firebase from 'firebase';

The timestamp code itself:

get timestamp() {
  return firebase.firestore.FieldValue.serverTimestamp();
}

EDIT on 17th november: If you'll use the previously mentioned import import * as firebase from 'firebase';, you'll get this warning in developer console:

It looks like you're using the development build of the Firebase JS SDK. When deploying Firebase apps to production, it is advisable to only import the individual SDK components you intend to use.

For the module builds, these are available in the following manner (replace with the name of a component - i.e. auth, database, etc):

CommonJS Modules: const firebase = require('firebase/app'); require('firebase/');

ES Modules: import firebase from 'firebase/app'; import 'firebase/';

Typescript: import * as firebase from 'firebase/app'; import 'firebase/';

So change it to:

import * as firebase from 'firebase/app';
import 'firebase/firestore';