Skip to content

Commit

Permalink
Vue 2 to 3 migration (#1428)
Browse files Browse the repository at this point in the history
  • Loading branch information
wajihyassine authored Mar 7, 2024
1 parent ab6fd53 commit ea94d05
Show file tree
Hide file tree
Showing 17 changed files with 1,276 additions and 19,986 deletions.
1 change: 1 addition & 0 deletions web/.browserslistrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
> 1%
last 2 versions
not dead
not ie 11
2 changes: 1 addition & 1 deletion web/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# web
# Turbinia Web

## Project setup

Expand Down
3 changes: 0 additions & 3 deletions web/babel.config.js

This file was deleted.

17 changes: 17 additions & 0 deletions web/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/@mdi/font@6.x/css/materialdesignicons.min.css" rel="stylesheet" />
<title>Turbinia</title>
</head>

<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>

</html>
20 changes: 19 additions & 1 deletion web/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
{ "include": ["./src/**/*"] }
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}
Loading

0 comments on commit ea94d05

Please sign in to comment.