@lidhium/cli
Version:
micro-frontend cli packed with webpack
29 lines (28 loc) • 485 B
JSON
{
"extends":"../../tsconfig.json",
"compilerOptions": {
"resolveJsonModule": true,
"outDir": "./dist",
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@root/*": [
"../../*"
],
},
"types": ["node", "jest","mocha"]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"src/utils/*.js"],
"exclude": [
"node_modules"
]
}