Files
tf2wikipricing/tsconfig.json
xenticore 95ce637892 feat: enable webextension builds
Currently only supports Chrome due to no `chrome` -> `browser` polyfill
2025-05-01 15:27:14 -04:00

16 lines
450 B
JSON

{
"include": ["src/**/*", "declarations.d.ts", "global.d.ts"],
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "es6",
"target": "es6",
"jsx": "react",
"lib": ["dom", "es2021"],
"allowJs": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": ["bun-types", "jest", "greasemonkey", "chrome", "firefox-webext-browser"]
}
}