flcs

tsconfig.json

Aug 4th, 2022 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "compilerOptions": {
  3.       "lib": ["ES2020"],
  4.       "module": "commonjs",
  5.       "target": "ES2019",
  6.       "strict": true,
  7.       "esModuleInterop": true,
  8.       "skipLibCheck": true,
  9.       "forceConsistentCasingInFileNames": true,
  10.       "baseUrl": ".",
  11.       "outDir": "dist",
  12.       "paths": {
  13.         "app/*": ["src/app/*"],
  14.         "api/*": ["src/api/*"],
  15.         "config/*": ["src/config/*"],
  16.         "drivers/*": ["src/drivers/*"],
  17.         "interfaces/*": ["src/interfaces/*"],
  18.         "entities/*": ["src/entities/*"],
  19.         "use-cases/*": ["src/use-cases/*"],
  20.       },
  21.       "resolveJsonModule": true,
  22.       "sourceMap": true,
  23.       "allowJs": true,
  24.       "typeRoots": ["src/@types", "node_modules/@types"],
  25.       "types": ["reflect-metadata","jest"],
  26.       "moduleResolution": "node",
  27.       "experimentalDecorators": true,
  28.       "emitDecoratorMetadata": true
  29.   },
  30.   "include": [
  31.     "src/**/*",
  32.   ]
  33. }
Add Comment
Please, Sign In to add comment