Files
page-assist/tsconfig.json

14 lines
282 B
JSON
Raw Normal View History

2023-04-09 14:30:44 +05:30
{
2024-03-23 14:44:05 +05:30
"extends": "./.wxt/tsconfig.json",
2023-04-09 14:30:44 +05:30
"compilerOptions": {
2024-03-23 14:44:05 +05:30
"noEmit": true,
"allowImportingTsExtensions": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2024-03-24 12:43:43 +05:30
"jsx": "react-jsx",
"strict": false
2024-03-23 14:44:05 +05:30
},
"exclude": [
"node_modules"
],
2024-02-01 13:40:44 +05:30
}