Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

tsconfig.json 396B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "strictPropertyInitialization": false,
  4. "noImplicitAny": false,
  5. "target": "ESnext",
  6. "module": "commonjs",
  7. "declaration": true,
  8. "outDir": "./js",
  9. "strict": true,
  10. "experimentalDecorators": true
  11. },
  12. "include": ["src/**/*.ts", "test/**/*.ts", "Index.ts", "demo.ts", "scratchpad.ts"],
  13. "exclude": ["node_modules"]
  14. }