File tree Expand file tree Collapse file tree
src/BikeTracking.Frontend Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { customElement } from '@aurelia/runtime-html' ;
2- import template from './signup-page.html?raw' ;
31import {
42 identifyUser ,
53 signupUser ,
64 type ErrorResponse ,
75 type ThrottleResponse ,
86} from '../../services/users-api' ;
97
10- @customElement ( { name : 'signup-page' , template } )
118export class SignupPage {
129 public signupName = '' ;
1310 public signupPin = '' ;
Original file line number Diff line number Diff line change 44 "moduleResolution" : " node" ,
55 "skipLibCheck" : true ,
66 "target" : " ES2017" ,
7+ "experimentalDecorators" : true ,
78 "esModuleInterop" : true ,
89 "resolveJsonModule" : true ,
910 "importHelpers" : true ,
Original file line number Diff line number Diff line change @@ -21,4 +21,14 @@ export default defineConfig({
2121 } ) ,
2222 nodePolyfills ( ) ,
2323 ] ,
24- } ) ;
24+ resolve : {
25+ alias : {
26+ '@' : '/src' , // Path aliasing
27+ }
28+ } ,
29+ css : {
30+ modules : {
31+ localsConvention : 'camelCase' // CSS Modules support
32+ }
33+ }
34+ } ) ;
You can’t perform that action at this time.
0 commit comments