tsconfig.json 589 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "moduleResolution": "node",
  4. "target": "es6",
  5. "lib": ["es6"],
  6. "module": "commonjs",
  7. "declaration": false,
  8. "allowSyntheticDefaultImports": true,
  9. "inlineSourceMap": false,
  10. "sourceMap": true,
  11. "noEmitOnError": false,
  12. "emitDecoratorMetadata": false,
  13. "experimentalDecorators": true,
  14. "noImplicitReturns": true,
  15. "noImplicitThis": false,
  16. "noImplicitUseStrict":false,
  17. "noImplicitAny": false,
  18. "noUnusedLocals": true
  19. },
  20. "include": [
  21. "*.ts",
  22. "**/*.ts"
  23. ]
  24. }