You've already forked mangowm.github.io
mirror of
https://github.com/mangowm/mangowm.github.io.git
synced 2026-05-02 14:27:46 -07:00
25 lines
591 B
JSON
25 lines
591 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
|
"types": ["vite/client"],
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2022",
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"fumadocs-mdx:collections/*": [".source/*"]
|
|
},
|
|
"noEmit": true
|
|
}
|
|
}
|