2020-12-27 21:32:43 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
2020-12-30 01:32:46 +00:00
|
|
|
"lib": [ "esnext", "dom" ],
|
|
|
|
"plugins": [ { "name": "@vuedx/typescript-plugin-vue" } ],
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
// "noErrorTruncation": true,
|
2020-12-30 13:34:23 +00:00
|
|
|
"paths": {}
|
2020-12-27 21:32:43 +00:00
|
|
|
},
|
2021-03-08 15:29:35 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.d.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"packages/**/lib/**/*.ts",
|
|
|
|
"packages/**lib/**/*.d.ts",
|
|
|
|
"packages/**lib/**/*.tsx",
|
|
|
|
"packages/**lib/**/*.vue"
|
|
|
|
]
|
2020-12-27 21:32:43 +00:00
|
|
|
}
|