I am trying to set up an NFT environment. Here is ...
# sdf
a
I am trying to set up an NFT environment. Here is what I have done so far. 1. Installed
netsuite-fasttrack-toolkit-ss2
as a dependency. 2. Installed
@hitc/netsuite-types
as a devDependency. 3. I am using the example code provided here. I keep getting the error:
Cannot find module 'N/record' or its corresponding type declarations
cc: @stalbert
d
Make sure you have following in the tsconfig.json:
Copy code
"paths": {
  "N/*": [
    "node_modules/@hitc/netsuite-types/N/*"
  ],
  "N": [
    "node_modules/@hitc/netsuite-types/N"
  ],
}