選択できるのは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": "./lib",
  9. "strict": true,
  10. "experimentalDecorators": true
  11. },
  12. "include": ["src/backend/**/*", "test/**/*"],
  13. "exclude": ["node_modules", "**/__tests__/*", "src/frontend/**/*"]
  14. }