File tree Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Expand file tree Collapse file tree 4 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 22 "cSpell.words" : [
33 " instanceof" ,
44 " onfocus" ,
5- " sveltejs"
5+ " sveltejs" ,
6+ " sveltekit"
67 ]
78}
Original file line number Diff line number Diff line change 11import type { PageServerLoad } from "./$types" ;
22
3- export const load : PageServerLoad = async ( event ) => {
3+ export const load : PageServerLoad = async ( ) => {
44 // console.log(event)
55}
Original file line number Diff line number Diff line change @@ -34,5 +34,7 @@ export const actions: Actions = {
3434 } )
3535
3636 new CookiesManager ( cookies ) . setSessionId ( auth_token . token ) ;
37+
38+ return { success : true }
3739 } ,
3840}
Original file line number Diff line number Diff line change 88 "resolveJsonModule" : true ,
99 "skipLibCheck" : true ,
1010 "sourceMap" : true ,
11- "strict" : true
11+ "strict" : true ,
12+ // "alwaysStrict": true,
13+ // "strictBindCallApply": true,
14+ // "strictFunctionTypes": true,
15+ // "strictNullChecks": true,
16+ // "strictPropertyInitialization": true,
17+ // "useUnknownInCatchVariables": true,
18+
19+ "allowUnreachableCode" : false ,
20+ "exactOptionalPropertyTypes" : true ,
21+ "noImplicitAny" : true ,
22+ "noImplicitOverride" : true ,
23+ "noImplicitReturns" : true ,
24+ "noImplicitThis" : true ,
25+ "noFallthroughCasesInSwitch" : true ,
26+ "noUncheckedIndexedAccess" : true ,
27+
28+ "lib" : [" ES2021.String" ],
29+ "module" : " es2022" ,
30+ "moduleResolution" : " node" ,
31+ "downlevelIteration" : true
1232 }
1333 // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
1434 //
You can’t perform that action at this time.
0 commit comments