File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ npm install @bluecadet/launchpad
29
29
1 . Create a configuration file:
30
30
31
31
``` js
32
- // launchpad.config.js
32
+ // launchpad.config.js (or launchpad.config.ts, launchpad.config.mjs, etc.)
33
33
import { defineConfig } from ' @bluecadet/launchpad-cli' ;
34
34
import { jsonSource } from ' @bluecadet/launchpad-content' ;
35
35
Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ The Launchpad CLI uses a flexible configuration system that automatically search
4
4
5
5
## Config File Search
6
6
7
- The CLI searches for config files in the following order :
7
+ The CLI searches for config files with the following names :
8
8
9
9
1 . ` launchpad.config.js `
10
10
2 . ` launchpad.config.mjs `
11
+ 3 . ` launchpad.config.ts `
12
+ 4 . ` launchpad.config.cjs `
13
+ 5 . ` launchpad.config.mts `
14
+ 6 . ` launchpad.config.cts `
11
15
12
16
The search starts in the current working directory and recursively searches up parent directories (up to 64 levels) until a config file is found.
13
17
You can’t perform that action at this time.
0 commit comments