UNPKG
create-crack
Version:
latest (2.0.0)
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
CLI tool for creating crack projects
create-crack
/
template
/
template-react-web-js
/
jsconfig.json
16 lines
(15 loc)
•
359 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions"
: {
//
项目根路径
"baseUrl"
:
"./"
,
//
别名映射路径
"paths"
: {
"
@/
*"
: [
"./src/*"
],
"
@pages
/*"
: [
"./src/pages/*"
] } },
//
编译时排除以下目录文件使用配置规则
"exclude"
: [
"node_modules"
,
"dist"
],
//
编译时包含以下目录文件使用配置规则
"include"
: [
"src"
] }