element-plus/docs/tsconfig.json
qiang 0c92e8a8d2
docs: only cache the user preferred language pages in the PWA (#7568)
* 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
2022-05-12 22:48:38 +08:00

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"]
}