Add basic vue app

This commit is contained in:
Joey Yakimowich-Payne 2023-08-09 19:31:10 -06:00
commit 69e7cf3f3b
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1
44 changed files with 3530 additions and 1217 deletions

16
tsconfig.node.json Normal file
View file

@ -0,0 +1,16 @@
{
"extends": "@tsconfig/node18/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
}