aboutsummaryrefslogtreecommitdiff
path: root/jsconfig.json
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2024-07-14 16:17:59 -0500
committerMark Powers <mark@marks.kitchen>2024-07-14 16:17:59 -0500
commit0e742a485f3fa7d35d26b05980a293b5760e8418 (patch)
tree97510b5e1979f7e02dbcb17ccbc699c4f97e63f2 /jsconfig.json
Initial commitHEADmaster
Diffstat (limited to 'jsconfig.json')
-rw-r--r--jsconfig.json39
1 files changed, 39 insertions, 0 deletions
diff --git a/jsconfig.json b/jsconfig.json
new file mode 100644
index 0000000..456944a
--- /dev/null
+++ b/jsconfig.json
@@ -0,0 +1,39 @@
+{
+ "compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "src/*": [
+ "src/*"
+ ],
+ "app/*": [
+ "*"
+ ],
+ "components/*": [
+ "src/components/*"
+ ],
+ "layouts/*": [
+ "src/layouts/*"
+ ],
+ "pages/*": [
+ "src/pages/*"
+ ],
+ "assets/*": [
+ "src/assets/*"
+ ],
+ "boot/*": [
+ "src/boot/*"
+ ],
+ "stores/*": [
+ "src/stores/*"
+ ],
+ "vue$": [
+ "node_modules/vue/dist/vue.runtime.esm-bundler.js"
+ ]
+ }
+ },
+ "exclude": [
+ "dist",
+ ".quasar",
+ "node_modules"
+ ]
+} \ No newline at end of file