tsconfig.json 368 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "ES2020",
  5. "lib": ["ES2020"],
  6. "sourceMap": true,
  7. "rootDir": "../..",
  8. "strict": false,
  9. "noImplicitAny": false,
  10. "noImplicitThis": false,
  11. "alwaysStrict": false,
  12. "skipLibCheck": true,
  13. "baseUrl": "../..",
  14. "paths": {
  15. "*": ["*", "src/*"]
  16. }
  17. },
  18. "exclude": ["node_modules", ".vscode-test"]
  19. }