mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
744 B
47 lines
744 B
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"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"
|
|
],
|
|
"vueCompilerOptions": {
|
|
"target": 3,
|
|
"plugins": [
|
|
"@vue/language-plugin-pug"
|
|
]
|
|
}
|
|
}
|