Advertisement
Guest User

tsconfig.json

a guest
Mar 12th, 2021
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.78 KB | None | 0 0
  1. {
  2.   "compilerOptions": {
  3.     "target": "es6",
  4.     "module": "commonjs",
  5.     "lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
  6.     "sourceMap": true,
  7.     "outDir": "./dist",
  8.     "moduleResolution": "node",
  9.     "removeComments": true,
  10.     "noImplicitAny": true,
  11.     "strictNullChecks": true,
  12.     "strictFunctionTypes": true,
  13.     "noImplicitThis": true,
  14.     "noUnusedLocals": true,
  15.     "noUnusedParameters": true,
  16.     "noImplicitReturns": true,
  17.     "noFallthroughCasesInSwitch": true,
  18.     "allowSyntheticDefaultImports": true,
  19.     "esModuleInterop": true,
  20.     "emitDecoratorMetadata": true,
  21.     "experimentalDecorators": true,
  22.     "resolveJsonModule": true,
  23.     "baseUrl": "."
  24.   },
  25.   "exclude": ["node_modules"],
  26.   "include": ["./src/**/*.tsx", "./src/**/*.ts"]
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement