We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18c5431 commit f60add8Copy full SHA for f60add8
src/app/core/services/electron/electron.service.ts
@@ -10,10 +10,10 @@ import * as fs from 'fs';
10
providedIn: 'root'
11
})
12
export class ElectronService {
13
- ipcRenderer: typeof ipcRenderer;
14
- webFrame: typeof webFrame;
15
- childProcess: typeof childProcess;
16
- fs: typeof fs;
+ ipcRenderer!: typeof ipcRenderer;
+ webFrame!: typeof webFrame;
+ childProcess!: typeof childProcess;
+ fs!: typeof fs;
17
18
constructor() {
19
// Conditional imports
tsconfig.json
@@ -1,6 +1,7 @@
1
{
2
"compileOnSave": false,
3
"compilerOptions": {
4
+ "strict": true,
5
"outDir": "./dist/out-tsc",
6
"module": "es2022",
7
"sourceMap": true,
0 commit comments