You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 482B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "strictPropertyInitialization": false,
  4. "noImplicitAny": false,
  5. "target": "esNext",
  6. "declaration": true,
  7. "module": "commonjs",
  8. "moduleResolution": "node",
  9. "strict": true,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "baseUrl": "./",
  13. "outDir": "./lib",
  14. "types": ["mocha"],
  15. "strictNullChecks": false,
  16. "esModuleInterop": true
  17. },
  18. "include": ["src", "test"],
  19. "exclude": ["src/gui"]
  20. }