tsconfig.json 784 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "compilerOptions": {
  3. "target": "ES2015",
  4. "module": "esnext",
  5. "moduleResolution": "node",
  6. "lib": ["es2015", "dom"],
  7. "allowSyntheticDefaultImports": true,
  8. "skipLibCheck": true,
  9. "sourceMap": true,
  10. "rootDir": "./src",
  11. "outDir": "./dist",
  12. "strict": true,
  13. "noImplicitAny": true,
  14. "strictNullChecks": true,
  15. "strictFunctionTypes": true,
  16. "strictPropertyInitialization": true,
  17. "noImplicitThis": true,
  18. "alwaysStrict": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "noImplicitReturns": true,
  22. "noFallthroughCasesInSwitch": true,
  23. "esModuleInterop": true,
  24. "experimentalDecorators": true,
  25. "emitDecoratorMetadata": true
  26. },
  27. "include": ["src/**/*.ts"],
  28. "exclude": ["node_modules", "dist"]
  29. }