mirror of
https://github.com/vuejs/core.git
synced 2024-11-22 04:51:10 +00:00
35 lines
795 B
JSON
35 lines
795 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"sourceMap": false,
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": false,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"removeComments": false,
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["jest", "puppeteer", "node"],
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@vue/*": ["packages/*/src"],
|
|
"vue": ["packages/vue/src"]
|
|
}
|
|
},
|
|
"include": [
|
|
"packages/global.d.ts",
|
|
"packages/runtime-dom/jsx.d.ts",
|
|
"packages/*/src",
|
|
"packages/*/__tests__",
|
|
"test-dts"
|
|
]
|
|
}
|