Just Getting Started and Hit First Error "ts-node SaveData.ts" Creates an ERROR

Greetings,

During the first few steps of getting started, and after running the command “ts-node SaveData.ts” The following Error happens.

PS D:\OneDrive\OneDrive!MediaVault\VisualStudioProject\Git> ts-node SaveData.ts
C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:820
return new TSError(diagnosticText, diagnosticCodes);
^
TSError: ⨯ Unable to compile TypeScript:
SaveData.ts:2:11 - error TS2304: Cannot find name ‘Moralis’.

2 await Moralis.start({ serverUrl, appId, masterKey });
~~~~~~~
SaveData.ts:2:27 - error TS18004: No value exists in scope for the shorthand property ‘serverUrl’. Either declare one or provide an initializer.

2 await Moralis.start({ serverUrl, appId, masterKey });
~~~~~~~~~
SaveData.ts:2:38 - error TS18004: No value exists in scope for the shorthand property ‘appId’. Either declare one or provide an initializer.

2 await Moralis.start({ serverUrl, appId, masterKey });
~~~~~
SaveData.ts:2:45 - error TS18004: No value exists in scope for the shorthand property ‘masterKey’. Either declare one or provide an initializer.

2 await Moralis.start({ serverUrl, appId, masterKey });
~~~~~~~~~
SaveData.ts:4:21 - error TS2304: Cannot find name ‘Moralis’.

4 const Monster = Moralis.Object.extend(“Monster”);
~~~~~~~

at createTSError (C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:820:12)
at reportTSError (C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:824:19)
at getOutput (C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:1014:36)
at Object.compile (C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:1322:43)
at Module.m._compile (C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:1454:30)
at Module._extensions..js (node:internal/modules/cjs/loader:1157:10)
at Object.require.extensions.<computed> [as .ts] (C:\Users\lacy.phoenixtekk\AppData\Roaming\npm\node_modules\ts-node\src\index.ts:1458:12)       
at Module.load (node:internal/modules/cjs/loader:981:32)
at Function.Module._load (node:internal/modules/cjs/loader:822:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:77:12) {

diagnosticCodes: [ 2304, 18004, 18004, 18004, 2304 ]