File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ console.log();
3535console . log ( '👁️ Views:' ) ;
3636console . log ( ' List View:' , exampleListView . name ) ;
3737console . log ( ' Type:' , exampleListView . type ) ;
38- console . log ( ' Columns:' , exampleListView . columns ? .length ) ;
38+ console . log ( ' Columns:' , exampleListView . columns . length ) ;
3939console . log ( ) ;
4040console . log ( ' Kanban View:' , exampleKanbanView . name ) ;
4141console . log ( ' Type:' , exampleKanbanView . type ) ;
Original file line number Diff line number Diff line change 66 */
77
88// Export plugin configuration
9- export { config , default as default } from './objectstack.config.js' ;
9+ export { config , default } from './objectstack.config.js' ;
1010
1111// Export objects
1212export { exampleObject } from './objects/example.object.js' ;
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
33 "target" : " ES2022" ,
4- "module" : " ES2022 " ,
4+ "module" : " NodeNext " ,
55 "lib" : [" ES2022" ],
6- "moduleResolution" : " node " ,
6+ "moduleResolution" : " NodeNext " ,
77 "esModuleInterop" : true ,
88 "allowSyntheticDefaultImports" : true ,
99 "strict" : true ,
You can’t perform that action at this time.
0 commit comments