Advertisement
Guest User

4: tsconfig.json

a guest
Oct 15th, 2021
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.88 KB | None | 0 0
  1. {
  2.     "extends": "../tsconfig.json",
  3.     "compilerOptions": {
  4.         "target": "es5",
  5.         "lib": ["dom", "dom.iterable", "esnext"],
  6.         "allowJs": true,
  7.         "baseUrl": ".",
  8.         "skipLibCheck": true,
  9.         "strict": false,
  10.         "forceConsistentCasingInFileNames": true,
  11.         "noEmit": true,
  12.         "esModuleInterop": true,
  13.         "module": "esnext",
  14.         "moduleResolution": "node",
  15.         "resolveJsonModule": true,
  16.         "isolatedModules": true,
  17.         "noImplicitAny": false,
  18.         "noImplicitThis": false,
  19.         "noFallthroughCasesInSwitch": true,
  20.         "typeRoots": ["./@types", "./node_modules/@types"],
  21.         "paths": {
  22.             "@global/*": ["../global/build/*"],
  23.             "draftjs-utils": ["./@types/draftjs-utils"]
  24.         },
  25.         "plugins": [
  26.             {
  27.                 "name": "typescript-strict-plugin"
  28.             }
  29.         ],
  30.         "jsx": "preserve"
  31.     },
  32.     "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  33.     "exclude": ["node_modules"],
  34.     "references": [{ "path": "../global" }]
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement