Advertisement
flcs

tsconfig fernando

Aug 9th, 2022 (edited)
1,003
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.77 KB | None | 0 0
  1. {
  2.     "compilerOptions": {
  3.         "target": "es6",
  4.         "module": "CommonJS",
  5.         "allowJs": true,
  6.         "outDir": "./dist",
  7.         "rootDir": "./src",
  8.         "strict": true,
  9.         "strictPropertyInitialization": false,
  10.         "skipLibCheck": true,
  11.         "moduleResolution": "node",
  12.         "baseUrl": "./src",
  13.         "allowSyntheticDefaultImports": true,
  14.         "esModuleInterop": true,
  15.         "experimentalDecorators": true,
  16.         "emitDecoratorMetadata": true,
  17.         "forceConsistentCasingInFileNames": true,
  18.         "noImplicitAny": true,
  19.         "paths": {
  20.             "@services/*": ["./services/*"]
  21.         }
  22.     },
  23.     "include": [
  24.         "src/**/*",
  25.         "test/**/*"
  26.     ],
  27.     "exclude": [
  28.         "node_modules"
  29.     ]
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement