tsconfig.json 487 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "declaration": true,
  5. "removeComments": true,
  6. "emitDecoratorMetadata": true,
  7. "experimentalDecorators": true,
  8. "allowSyntheticDefaultImports": true,
  9. "target": "es2017",
  10. "sourceMap": true,
  11. "outDir": "./dist",
  12. "incremental": true,
  13. "skipLibCheck": true,
  14. "resolveJsonModule" : true
  15. },
  16. "include": ["src/**/*","src/**/**/*","src/**/dlls/*.dll"]
  17. // NOTE: More options at tsconfig.build.json
  18. }