21 changed files with 1035 additions and 1149 deletions
@ -1,16 +0,0 @@ |
|||
{ |
|||
// Use IntelliSense to learn about possible attributes. |
|||
// Hover to view descriptions of existing attributes. |
|||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 |
|||
"version": "0.2.0", |
|||
"configurations": [ |
|||
{ |
|||
"type": "chrome", |
|||
"request": "launch", |
|||
"name": "Launch Chrome against localhost", |
|||
"url": "http://localhost:5173", |
|||
"webRoot": "${workspaceFolder}" |
|||
} |
|||
], |
|||
"runtimeArgs": ["--preserve-symlinks"] |
|||
} |
|||
File diff suppressed because it is too large
@ -1,61 +0,0 @@ |
|||
/* Use this file to declare any custom file extensions for importing */ |
|||
/* Use this folder to also add/extend a package d.ts file, if needed. */ |
|||
|
|||
///<reference types="chrome"/>
|
|||
|
|||
/* CSS MODULES */ |
|||
declare module "*.module.css" { |
|||
const classes: { [key: string]: string }; |
|||
export default classes; |
|||
} |
|||
declare module "*.module.scss" { |
|||
const classes: { [key: string]: string }; |
|||
export default classes; |
|||
} |
|||
declare module "*.module.sass" { |
|||
const classes: { [key: string]: string }; |
|||
export default classes; |
|||
} |
|||
declare module "*.module.less" { |
|||
const classes: { [key: string]: string }; |
|||
export default classes; |
|||
} |
|||
declare module "*.module.styl" { |
|||
const classes: { [key: string]: string }; |
|||
export default classes; |
|||
} |
|||
|
|||
/* CSS */ |
|||
declare module "*.css"; |
|||
declare module "*.scss"; |
|||
declare module "*.sass"; |
|||
declare module "*.less"; |
|||
declare module "*.styl"; |
|||
|
|||
/* IMAGES */ |
|||
declare module "*.svg" { |
|||
const ref: string; |
|||
export default ref; |
|||
} |
|||
declare module "*.bmp" { |
|||
const ref: string; |
|||
export default ref; |
|||
} |
|||
declare module "*.gif" { |
|||
const ref: string; |
|||
export default ref; |
|||
} |
|||
declare module "*.jpg" { |
|||
const ref: string; |
|||
export default ref; |
|||
} |
|||
declare module "*.jpeg" { |
|||
const ref: string; |
|||
export default ref; |
|||
} |
|||
declare module "*.png" { |
|||
const ref: string; |
|||
export default ref; |
|||
} |
|||
|
|||
/* CUSTOM: ADD YOUR OWN HERE */ |
|||
Loading…
Reference in new issue