File tree Expand file tree Collapse file tree 3 files changed +12
-13
lines changed
Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 22 "$schema" : " ./node_modules/@biomejs/biome/configuration_schema.json" ,
33 "files" : {
44 "maxSize" : 1572864 ,
5- "ignore" : [
6- " node_modules" ,
7- " dist" ,
8- " .cache" ,
9- " coverage" ,
10- " html" ,
11- " package.json"
5+ "includes" : [
6+ " **" ,
7+ " !**/node_modules" ,
8+ " !**/dist" ,
9+ " !**/.cache" ,
10+ " !**/coverage" ,
11+ " !**/html" ,
12+ " !**/package.json"
1213 ]
1314 },
1415 "vcs" : {
2223 "formatter" : {
2324 "enabled" : true
2425 },
25- "organizeImports" : {
26- "enabled" : true
27- }
26+ "assist" : { "actions" : { "source" : { "organizeImports" : " on" } } }
2827}
Original file line number Diff line number Diff line change 1+ export * from "./middleware" ;
12export * from "./types/config" ;
2- export * from "./types/viewer-info" ;
33export * from "./types/inference" ;
4- export * from "./middleware " ;
4+ export * from "./types/viewer-info " ;
55
66import type { CloudFrontViewerInfo } from "./types/viewer-info" ;
77
Original file line number Diff line number Diff line change 1- import type { CloudFrontViewerConfig } from "./config" ;
21import type {
2+ CloudFrontViewerConfig ,
33 DeviceTypeConfig ,
44 LocationConfig ,
55 NetworkConfig ,
You can’t perform that action at this time.
0 commit comments