tsconfig.json 801 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "moduleResolution": "node",
  4. "outDir": "public/dist",
  5. "target": "es5",
  6. "lib": ["es6", "dom"],
  7. "rootDir": "public/",
  8. "jsx": "react",
  9. "module": "esnext",
  10. "declaration": false,
  11. "allowSyntheticDefaultImports": true,
  12. "inlineSourceMap": true,
  13. "sourceMap": false,
  14. "noEmitOnError": false,
  15. "emitDecoratorMetadata": false,
  16. "experimentalDecorators": false,
  17. "noImplicitReturns": true,
  18. "noImplicitThis": false,
  19. "noImplicitUseStrict":false,
  20. "noImplicitAny": false,
  21. "baseUrl": "public",
  22. "paths": {
  23. "app": ["app"]
  24. }
  25. },
  26. "include": [
  27. "public/app/**/*.ts",
  28. "public/app/**/*.tsx",
  29. "public/test/**/*.ts"
  30. ],
  31. "exclude": [
  32. ]
  33. }