chore: update target

This commit is contained in:
Johannes Millan 2020-07-05 19:15:55 +02:00
parent 970b519bc0
commit 65b633c119
4 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@
// beforeEach(() => TestBed.configureTestingModule({}));
//
// it('should be created', () => {
// const service: ExecBeforeCloseService = TestBed.get(ExecBeforeCloseService);
// const service: ExecBeforeCloseService = TestBed.inject(ExecBeforeCloseService);
// expect(service).toBeTruthy();
// });
// });

View file

@ -6,7 +6,7 @@
// beforeEach(() => TestBed.configureTestingModule({}));
//
// it('should be created', () => {
// const service: DropboxApiService = TestBed.get(DropboxApiService);
// const service: DropboxApiService = TestBed.inject(DropboxApiService);
// expect(service).toBeTruthy();
// });
// });

View file

@ -6,7 +6,7 @@
// beforeEach(() => TestBed.configureTestingModule({}));
//
// it('should be created', () => {
// const service: DropboxSyncService = TestBed.get(DropboxSyncService);
// const service: DropboxSyncService = TestBed.inject(DropboxSyncService);
// expect(service).toBeTruthy();
// });
// });

View file

@ -15,7 +15,7 @@
"noUnusedLocals": true,
"strictPropertyInitialization": true,
"allowSyntheticDefaultImports": true,
"target": "es5",
"target": "es2018",
"resolveJsonModule": true,
"typeRoots": [
"node_modules/@types"