18 lines
430 B
JSON
18 lines
430 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2022",
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ESNext", "DOM"],
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"types": ["chrome", "node"]
|
||
|
|
},
|
||
|
|
"include": ["src", "manifest.config.ts", "vite.config.ts"]
|
||
|
|
}
|