WebChat/tsconfig.json

12 lines
199 B
JSON
Raw Normal View History

2023-07-11 20:22:57 +00:00
{
2023-11-04 18:18:09 +00:00
"extends": "./.wxt/tsconfig.json",
2023-07-11 20:22:57 +00:00
"compilerOptions": {
2023-11-04 18:18:09 +00:00
"allowImportingTsExtensions": true,
2023-11-06 19:05:26 +00:00
"jsx": "react-jsx",
2024-09-18 19:41:07 +00:00
"allowJs": true,
2023-11-06 19:05:26 +00:00
"paths": {
"@/*": ["./src/*"]
}
2023-11-04 18:18:09 +00:00
}
2023-07-11 20:22:57 +00:00
}