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()
371
371
copy (__DIR__ .'/../../stubs/inertia/postcss.config.js ' , base_path ('postcss.config.js ' ));
372
372
copy (__DIR__ .'/../../stubs/inertia/vite.config.js ' , base_path ('vite.config.js ' ));
373
373
374
+ // jsconfig.json...
375
+ copy (__DIR__ .'/../../stubs/inertia/jsconfig.json ' , base_path ('jsconfig.json ' ));
376
+
374
377
// Directories...
375
378
(new Filesystem )->ensureDirectoryExists (app_path ('Actions/Fortify ' ));
376
379
(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