Skip to content
This repository was archived by the owner on Jul 26, 2025. It is now read-only.

Commit d3f0d99

Browse files
authored
chore: use node16 module resolution (#324)
Closes: #323
1 parent e332345 commit d3f0d99

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"ml-convolution": "^2.0.0",
5555
"ml-matrix": "^6.10.4",
5656
"ml-regression-multivariate-linear": "^2.0.4",
57-
"ml-spectra-processing": "^12.1.0",
57+
"ml-spectra-processing": "^12.4.0",
5858
"robust-point-in-polygon": "^1.0.3",
5959
"ssim.js": "^3.5.0",
6060
"tiff": "^5.0.3"
@@ -69,7 +69,7 @@
6969
"@types/react": "^18.0.35",
7070
"@types/react-dom": "^18.0.11",
7171
"@types/robust-point-in-polygon": "^1.0.2",
72-
"@vitejs/plugin-react": "^3.1.0",
72+
"@vitejs/plugin-react": "^4.0.0",
7373
"autoprefixer": "^10.4.14",
7474
"clsx": "^1.2.1",
7575
"cross-env": "^7.0.3",
@@ -91,6 +91,6 @@
9191
"tailwindcss": "^3.3.1",
9292
"ts-jest": "^29.1.0",
9393
"typescript": "^5.0.4",
94-
"vite": "^4.2.1"
94+
"vite": "^4.3.5"
9595
}
9696
}

tsconfig.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,13 @@
22
"compilerOptions": {
33
"noImplicitReturns": true,
44
"esModuleInterop": true,
5-
"moduleResolution": "node",
5+
"moduleResolution": "node16",
66
"outDir": "lib",
77
"sourceMap": true,
88
"strict": true,
99
"target": "es2020",
1010
"jsx": "react-jsx",
1111
"useUnknownInCatchVariables": false
1212
},
13-
"include": [
14-
"./demo/**/*",
15-
"./jest.setup.ts",
16-
"./src/**/*",
17-
"./test/**/*",
18-
"vite.config.ts"
19-
]
13+
"include": ["./demo/**/*", "./jest.setup.ts", "./src/**/*", "./test/**/*"]
2014
}
File renamed without changes.

0 commit comments

Comments
 (0)