Fix import of @owlboard/ts-types

Signed-off-by: Fred Boniface <fred@fjla.uk>
This commit is contained in:
Fred Boniface 2023-08-01 18:13:44 +01:00
parent 1adf24d105
commit 658b0996bc
5 changed files with 843 additions and 1180 deletions

2
.npmrc
View File

@ -1 +1 @@
@owlboard:registry=https://git.fjla.uk/api/packages/OwlBoard/npm/
registry=https://git.fjla.uk/api/packages/OwlBoard/npm/

2011
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -30,7 +30,7 @@
"author": "Fred Boniface",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@owlboard/ts-types": "^0.0.1",
"@owlboard/ts-types": "^0.0.3",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"typescript": "^5.1.6"

View File

@ -13,7 +13,7 @@ function transformNrcc(input: any): NrccMessage[] {
input.message = [input.message]
}
for (const item of input?.message) {
let message = {
let message: NrccMessage = {
severity: item?.severity,
xhtmlMessage: item?.xhtmlMessage
}
@ -23,11 +23,11 @@ function transformNrcc(input: any): NrccMessage[] {
}
function transformTrainServices(input: Object): TrainServices[] {
let output: TrainServices[]
let output: TrainServices[] = []
return output
}
function transformLocation(input: any): ServiceLocation {
function transformLocation(input: any): ServiceLocation[] {
let output: ServiceLocation[] = []
if (!Array.isArray(input)) {
input = [input]

View File

@ -27,7 +27,7 @@
/* Modules */
"module": "commonjs", /* Specify what module code is generated. */
// "rootDir": "./", /* Specify the root folder within your source files. */
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
"moduleResolution": "node16", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */