tridactyl.tridactyl/tsconfig.json
Oliver Blanthorn fcb55685d2
Update to ts6
Most of the changed lines in this are from random
breaking changes in typedoc meaning that lots of
docstrings needed to be rewritten
2026-07-20 00:24:35 +02:00

32 lines
722 B
JSON

{
"compilerOptions": {
"moduleResolution": "bundler",
"module": "es2020",
"strict": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"noEmitOnError": true,
"outDir": "build/tsc-out",
"sourceMap": true,
"target": "es2019",
"lib": ["es2020", "dom", "dom.iterable"],
"experimentalDecorators": true,
"alwaysStrict": true,
"strictBindCallApply": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"types": ["@types/firefox-webext-browser"],
"paths": {
"@src/*": ["./src/*"]
}
},
"include": [
"./src/**/*"
],
"exclude": [
"./src/**/*.test.ts",
"./src/lib/test_utils.ts"
]
}