vue3-quickstart-cli
Version:
一个用于快速创建 Vue3 项目的脚手架工具。
17 lines • 390 B
JSON
{
"compilerOptions": {
"target": "ES2020",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "./dist",
"rootDir": "./bin",
"strict": false,
"allowJs": true,
"checkJs": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["bin/**/*"],
"exclude": ["node_modules", "dist"]
}