tsconfig.json 346 B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "noLib": false,
  5. "skipLibCheck": true,
  6. "lib": ["es2017"],
  7. "allowSyntheticDefaultImports": true,
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "target": "es6",
  11. "strict": true,
  12. "strictPropertyInitialization": false,
  13. "sourceMap": false
  14. }
  15. }