mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
0c92e8a8d2
* docs: cache the preferred lang pages in the PWA * chore: remove index.html in manifest * fix: no cache the '/' page * perf: optimize code * docs: add always refresh from PWA
24 lines
610 B
JSON
24 lines
610 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"lib": ["WebWorker"],
|
|
"paths": {
|
|
"element-plus": ["../packages/element-plus"],
|
|
"~/*": ["./.vitepress/vitepress/*"]
|
|
},
|
|
"types": ["../typings/components"],
|
|
"jsx": "preserve"
|
|
},
|
|
"include": ["**/*", ".vitepress/**/*"],
|
|
"exclude": ["node_modules"]
|
|
}
|