spindb 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +3 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -8,8 +8,10 @@ import { dirname, resolve } from 'path'
|
|
|
8
8
|
const __dirname = dirname(fileURLToPath(import.meta.url))
|
|
9
9
|
|
|
10
10
|
// Resolve tsconfig path - it should be in the package root
|
|
11
|
+
const tsconfigPath = resolve(__dirname, '../tsconfig.json')
|
|
12
|
+
|
|
11
13
|
register({
|
|
12
|
-
tsconfig:
|
|
14
|
+
tsconfig: tsconfigPath,
|
|
13
15
|
})
|
|
14
16
|
|
|
15
17
|
await import('../src/bin/cli.ts')
|