mirror of
https://github.com/vale981/tridactyl
synced 2025-03-04 17:11:40 -05:00

- prefer the canonical forms over fallback patterns (fixes rockpapershotgun.com, Discourse etc.): 1) link[rel] 2) a[rel] 3) a::text(pattern) - tighten fallback patterns (fixes Google, GitHub etc.) - remove site-specific patterns
19 lines
421 B
JSON
19 lines
421 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": false,
|
|
"noEmitOnError": true,
|
|
"outDir": "build/tsc-out",
|
|
"sourceMap": true,
|
|
"target": "ES2017",
|
|
"lib": ["ES2017","dom", "dom.iterable"],
|
|
"typeRoots": ["node_modules/@types", "node_modules/web-ext-types/"],
|
|
"alwaysStrict": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.test.ts"
|
|
]
|
|
}
|