mediawiki-skins-Vector/tsconfig.json
Jon Robson 845a0ab71d Make the limited width and font size controls work for logged in users
For time being manage classes inside Vector. Document with FIXME and a
test.

Bug: T351447
Change-Id: Icc084a59a0141ec2b7c772cf92e8cc58c11f15b1
2023-11-21 02:16:52 +00:00

28 lines
504 B
JSON

{
"exclude": [
"docs",
"jest.setup.js",
"vendor",
"coverage",
"tests/jest",
"tests/integration-qunit"
],
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"newLine": "lf",
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"pretty": true,
"target": "es5",
"lib": [ "dom" ],
"allowJs": true,
"checkJs": true,
"noEmit": true
}
}