28 lines
510 B
JSON
28 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["ESNext", "DOM"],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"types": ["chrome"],
|
|
"esModuleInterop": true,
|
|
"allowImportingTsExtensions": true,
|
|
"paths": {
|
|
"~/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"entrypoints/**/*",
|
|
"src/**/*",
|
|
".wxt/types/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
".output"
|
|
]
|
|
}
|