newsnow/tsconfig.app.json

14 lines
267 B
JSON
Raw Normal View History

2024-09-26 11:30:21 +08:00
{
2024-09-26 19:16:42 +08:00
"extends": "@ourongxing/tsconfig",
2024-09-26 11:30:21 +08:00
"compilerOptions": {
"jsx": "react-jsx",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"baseUrl": ".",
"paths": {
2024-09-26 19:16:42 +08:00
"~/*": ["src/*"],
"@shared/*": ["shared/*"]
2024-09-26 11:30:21 +08:00
}
},
2024-09-26 19:16:42 +08:00
"include": ["src", "shared"]
2024-09-26 11:30:21 +08:00
}