2021-09-27 15:25:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
2021-11-24 13:49:49 +08:00
|
|
|
"moduleResolution": "Node",
|
2021-09-27 15:25:16 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
2022-03-06 22:20:56 +08:00
|
|
|
"skipLibCheck": true,
|
2022-05-12 22:48:38 +08:00
|
|
|
"lib": ["WebWorker"],
|
2022-03-06 22:20:56 +08:00
|
|
|
"paths": {
|
2022-04-10 23:58:20 +08:00
|
|
|
"element-plus": ["../packages/element-plus"],
|
|
|
|
"~/*": ["./.vitepress/vitepress/*"]
|
2022-03-10 22:34:59 +08:00
|
|
|
},
|
2022-04-10 23:58:20 +08:00
|
|
|
"jsx": "preserve"
|
2021-09-27 15:25:16 +08:00
|
|
|
},
|
2024-11-08 09:38:27 +08:00
|
|
|
"include": ["**/*", ".vitepress/**/*", "../typings/global.d.ts"],
|
2021-09-27 15:25:16 +08:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
}
|