Files
tf2wikipricing/tsconfig.json
xenticore 8b2bf38eff refactor: declare GM_fetch as global for typescript
important for the compiler when mocking for unit tests
2025-03-28 22:52:42 -04:00

16 lines
440 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", "firefox-webext-browser"]
}
}