cpnode-front/tsconfig.json

33 lines
595 B
JSON

{
"extends": "@daotl/tsconfig/vue.json",
"compilerOptions": {
"outDir": "build/dist",
"baseUrl": ".",
"paths": {
"~/*": ["src/*"],
"@@/*": ["src/.fes/*"]
},
"types": ["node", "jest", "element-plus/global", "unplugin-icons/types/vue"]
},
"include": [
"src/**/*",
"tests/**/*",
"test/**/*",
"__test__/**/*",
"typings/**/*",
"config/**/*",
".eslintrc.js",
".stylelintrc.js",
".prettierrc.js"
],
"exclude": [
"node_modules",
"build",
"dist",
"scripts",
"src/.fes/*",
"webpack",
"jest"
]
}