Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

tsconfig.json 590 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  1. {
  2. "compilerOptions": {
  3. "declaration": true,
  4. "declarationMap": true,
  5. "esModuleInterop": true,
  6. "target": "es2020",
  7. "module": "CommonJS",
  8. "moduleResolution": "node",
  9. "outDir": "dist",
  10. "skipLibCheck": true,
  11. "sourceMap": true,
  12. "strict": true,
  13. "resolveJsonModule": true,
  14. "composite": true,
  15. "rootDir": ".",
  16. "baseUrl": "./"
  17. },
  18. "ts-node": {
  19. "swc": true
  20. },
  21. "include": ["src/", "test/", "./package.json", "src/**/*.json", "test/**/*.json"],
  22. "exclude": ["node_modules", "dist", "src/workers/**/*", "src/app/**/*", "test/site/"]
  23. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...