2022-05-30 13:36:07 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "./temp",
|
|
|
|
"outDir": "dist",
|
|
|
|
"sourceMap": true,
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
|
|
|
|
"allowJs": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitThis": false,
|
|
|
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
"paths": {
|
|
|
|
"compiler/*": ["src/compiler/*"],
|
|
|
|
"core/*": ["src/core/*"],
|
|
|
|
"server/*": ["src/server/*"],
|
|
|
|
"sfc/*": ["src/sfc/*"],
|
|
|
|
"shared/*": ["src/shared/*"],
|
|
|
|
"web/*": ["src/platforms/web/*"],
|
|
|
|
"v3": ["src/v3/index"],
|
|
|
|
"v3/*": ["src/v3/*"],
|
2022-05-31 08:33:48 +00:00
|
|
|
"types/*": ["src/types/*"],
|
2022-05-30 13:36:07 +00:00
|
|
|
"vue": ["src/platforms/web/entry-runtime-with-compiler"]
|
|
|
|
}
|
|
|
|
},
|
2022-05-31 08:33:48 +00:00
|
|
|
"include": ["src"]
|
2022-05-30 13:36:07 +00:00
|
|
|
}
|