Advertisement
AtomicOs

tsconfig.json

May 28th, 2021
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.59 KB | None | 0 0
  1. {
  2.   "compilerOptions": {
  3.     "sourceMap": true,
  4.     "noImplicitAny": true,
  5.     "module": "commonjs",
  6.     "lib": [
  7.       "es6",
  8.       "dom"
  9.     ],
  10.     "target": "es5",
  11.     "jsx": "react",
  12.     "moduleResolution": "node",
  13.     "typeRoots": [
  14.       "./node_modules/@types",
  15.       "./src/brave/components/definitions"
  16.     ],
  17.     // optional
  18.     "forceConsistentCasingInFileNames": true,
  19.     "noImplicitReturns": true,
  20.     "strictNullChecks": true,
  21.     "suppressImplicitAnyIndexErrors": true,
  22.     "noUnusedLocals": true
  23.   },
  24.   "include": [
  25.     "./src/brave/components/**/*.{ts,tsx}"
  26.   ]
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement