Kristopher Wood
03/30/2025, 2:19 AMChris
03/31/2025, 5:41 PMKristopher Wood
03/31/2025, 7:11 PMNElliott
04/01/2025, 7:15 AMKristopher Wood
04/01/2025, 4:46 PMKristopher Wood
04/01/2025, 4:47 PMNElliott
04/01/2025, 5:05 PMerictgrubaugh
04/01/2025, 8:40 PMChris
04/01/2025, 8:50 PM@hitc/netsuite-types
with the SuiteClould extension for vscode (or the other ide lotsa ppl use that I can't remember). You get all the intellisense and you can upload files with a keystroke. As long as your cutting out most of the point/click busy work with the tooling it's a better life. As far as other devs... well, put your stuff in a repo and gift it to the client. Years later when they wanna change it, they might remember to point the new guy at it.Chris
04/01/2025, 8:53 PM{
"compilerOptions": {
"module": "amd",
"target": "ESNext",
"moduleResolution": "node",
"sourceMap": false,
"newLine": "LF",
"experimentalDecorators": true,
"baseUrl": ".",
"lib": [
"es5",
"es2015.promise",
"dom",
"es2015"
],
"paths": {
"N": [
"node_modules/@hitc/netsuite-types/N"
],
"N/*": [
"node_modules/@hitc/netsuite-types/N/*"
]
}
},
"include": [
"src",
"__mocks__",
"__tests__"
],
"exclude": [
"node_modules"
]
}
Chris
04/01/2025, 9:00 PMdarrenhillconsulting
04/02/2025, 3:25 PMKristopher Wood
04/02/2025, 5:29 PM