mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RelatedArticles
synced 2024-11-24 00:05:50 +00:00
71de06a682
Changes: - Removes redundant styles now inside Codex - With the new component, it's not possible to display 3 cards in a single line at a tablet resolution, so the media query responsible is bumped to apply only at the desktop threshold - Decisions are documented in ADR Bug: T286835 Change-Id: I493e8e601ccc31b3cf1f16c0b5a8975f12ef336c
24 lines
452 B
JSON
24 lines
452 B
JSON
{
|
|
"include": [
|
|
"resources/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"newLine": "lf",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"pretty": true,
|
|
"target": "es5",
|
|
"module": "es2015",
|
|
"moduleResolution": "node",
|
|
"lib": [ "dom" ],
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true
|
|
}
|
|
}
|