2020-08-10 02:43:04 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-08-22 00:12:07 +08:00
|
|
|
"baseUrl": ".",
|
2020-08-10 02:43:04 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"target": "es2016",
|
|
|
|
"lib": ["DOM", "ESNext"],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2020-08-22 00:12:07 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-09-08 20:42:09 +08:00
|
|
|
"plugins": [{ "name": "@vuedx/typescript-plugin-vue" }],
|
2020-08-22 00:12:07 +08:00
|
|
|
"paths": {
|
|
|
|
"/~/*": ["src/*"]
|
|
|
|
}
|
2020-08-10 02:43:04 +08:00
|
|
|
},
|
2020-09-08 20:42:09 +08:00
|
|
|
"exclude": ["dist", "node_modules"]
|
2020-08-22 00:12:07 +08:00
|
|
|
}
|