no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / devtools / tsconfig.json
blobce82b3a328de675d7359d230a54dd284d592fbd2
2   "compilerOptions": {
3     "module": "commonjs",
4     // Set the baseUrl to the root of the project.
5     "baseUrl": "..",
6     // Make the type checking as strict as possible.
7     "strict": true,
8     // TypeScript will check JS files only if they have a @ts-check comment in them.
9     "allowJs": true,
10     // Only type check, don't emit files.
11     "noEmit": true,
12     // Allow esnext syntax. Otherwise the default is ES5 only.
13     "target": "esnext",
14     "lib": ["esnext", "dom"]
15   },
16   // Add a @ts-check comment to a JS file to start type checking it.
17   "include": ["./**/*.js", "./**/*.jsx"],
18   "exclude": [
19     "./client/debugger",
20     "./client/shared/vendor",
21     "./**/node_modules",
22     "./**/test"
23   ]