tsconfig.json 410 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "es2020",
  5. "rootDirs": [".", "../src"],
  6. "strict": true,
  7. "esModuleInterop": true,
  8. "experimentalDecorators": true,
  9. "emitDecoratorMetadata": true,
  10. "skipLibCheck": true,
  11. "strictPropertyInitialization": false,
  12. "resolveJsonModule": true,
  13. "noEmit": true
  14. },
  15. "include": ["**/*.ts", "**/*.json", "../src/**/*.ts"]
  16. }