mirror of
https://github.com/abhijithvijayan/web-extension-starter.git
synced 2025-10-07 07:22:37 +02:00
23 lines
381 B
JSON
23 lines
381 B
JSON
{
|
|
"extends": "@abhijithvijayan/tsconfig",
|
|
"compilerOptions": {
|
|
/* Let Vite control the final JS output */
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"ES2023"
|
|
],
|
|
|
|
/* Bundler-specific settings */
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"declaration": false
|
|
},
|
|
"include": [
|
|
"source"
|
|
]
|
|
} |