14 lines
326 B
JSON
14 lines
326 B
JSON
|
|
{
|
||
|
|
"extends": "./.wxt/tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"noExplicitAny": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["src/**/*", "tests/**/*", "wxt.config.ts", ".wxt/wxt.d.ts"]
|
||
|
|
}
|