mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
21 lines
469 B
JSON
21 lines
469 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Docusaurus",
|
|
"docs": "https://docusaurus.io/docs/typescript-support",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "preserve",
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM"],
|
|
"moduleResolution": "bundler",
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@site/*": ["./*"]
|
|
},
|
|
"skipLibCheck": true
|
|
}
|
|
}
|