File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -371,6 +371,9 @@ protected function installInertiaStack()
371371 copy (__DIR__ .'/../../stubs/inertia/postcss.config.js ' , base_path ('postcss.config.js ' ));
372372 copy (__DIR__ .'/../../stubs/inertia/vite.config.js ' , base_path ('vite.config.js ' ));
373373
374+ // jsconfig.json...
375+ copy (__DIR__ .'/../../stubs/inertia/jsconfig.json ' , base_path ('jsconfig.json ' ));
376+
374377 // Directories...
375378 (new Filesystem )->ensureDirectoryExists (app_path ('Actions/Fortify ' ));
376379 (new Filesystem )->ensureDirectoryExists (app_path ('Actions/Jetstream ' ));
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "baseUrl" : " ." ,
4+ "paths" : {
5+ "@/*" : [" resources/js/*" ]
6+ }
7+ },
8+ "exclude" : [" node_modules" , " public" ]
9+ }
You can’t perform that action at this time.
0 commit comments