mirror of
https://github.com/PaiGramTeam/PaiGramDocs.git
synced 2024-11-22 15:36:46 +00:00
37 lines
725 B
JSON
37 lines
725 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2020",
|
||
|
"module": "esnext",
|
||
|
"types": [
|
||
|
"bun-types"
|
||
|
],
|
||
|
"lib": [
|
||
|
"ESNext",
|
||
|
"DOM",
|
||
|
"DOM.Iterable"
|
||
|
],
|
||
|
"moduleResolution": "Bundler",
|
||
|
"esModuleInterop": true,
|
||
|
"strict": true,
|
||
|
"strictNullChecks": true,
|
||
|
"strictFunctionTypes": true,
|
||
|
"declaration": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"rootDir": ".",
|
||
|
"baseUrl": ".",
|
||
|
"jsx": "preserve",
|
||
|
"skipLibCheck": true,
|
||
|
"skipDefaultLibCheck": true,
|
||
|
"noUnusedLocals": true
|
||
|
},
|
||
|
"include": [
|
||
|
"docs",
|
||
|
"docs/src/*.json",
|
||
|
"docs/.vitepress/components/*.vue",
|
||
|
"docs/.vitepress/*.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/node_modules/**",
|
||
|
"**/dist/**"
|
||
|
]
|
||
|
}
|