Files
newsui/packages/docs/tsconfig.json
T

25 lines
554 B
JSON
Raw Normal View History

2026-05-19 21:09:56 +08:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"noEmit": true,
"incremental": true,
2026-05-21 14:12:50 +08:00
"moduleResolution": "bundler",
2026-05-19 21:09:56 +08:00
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"paths": {
2026-05-21 14:12:50 +08:00
"@/*": ["./*"],
"@/.source": ["./.source/index.ts"]
2026-05-19 21:09:56 +08:00
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}