mirror of
https://github.com/vuejs/vue.git
synced 2024-11-21 20:28:54 +00:00
38 lines
843 B
JSON
38 lines
843 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"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"],
|
|
"types": ["node"],
|
|
"paths": {
|
|
"compiler/*": ["src/compiler/*"],
|
|
"core/*": ["src/core/*"],
|
|
|
|
"server/*": ["src/server/*"],
|
|
"sfc/*": ["src/sfc/*"],
|
|
"shared/*": ["src/shared/*"],
|
|
|
|
"web/*": ["src/platforms/web/*"],
|
|
|
|
"vue": ["src/platforms/web/entry-runtime-with-compiler"]
|
|
}
|
|
},
|
|
"include": ["src", "typescript"],
|
|
}
|