2024-02-07 14:50:24 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-04-11 20:50:42 +08:00
|
|
|
"target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
2024-02-07 14:50:24 +08:00
|
|
|
"lib": [
|
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ESNext"
|
|
|
|
],
|
2024-04-11 20:50:42 +08:00
|
|
|
"module": "ESNext", /* Specify what module code is generated. */
|
|
|
|
"moduleResolution": "Bundler", /* Ensure that casing is correct in imports. */
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
|
|
"forceConsistentCasingInFileNames": true, /* Enable all strict type-checking options. */
|
|
|
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
2024-02-07 14:50:24 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"docs/*.d.ts",
|
|
|
|
"docs/*.ts",
|
|
|
|
"docs/.vitepress/**/*.d.ts",
|
|
|
|
"docs/.vitepress/**/*.ts",
|
2024-04-11 20:50:42 +08:00
|
|
|
"docs/.vitepress/**/*.vue"
|
2024-02-07 14:50:24 +08:00
|
|
|
]
|
|
|
|
}
|