tsconfig.json 806 B

1234567891011121314151617181920212223242526272829303132
  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": false,
  13. "sourceMap": true,
  14. "noEmitOnError": false,
  15. "emitDecoratorMetadata": false,
  16. "experimentalDecorators": true,
  17. "noImplicitReturns": true,
  18. "noImplicitThis": false,
  19. "noImplicitUseStrict":false,
  20. "noImplicitAny": false,
  21. "noUnusedLocals": true,
  22. "baseUrl": "public",
  23. "paths": {
  24. "app": ["app"]
  25. }
  26. },
  27. "include": [
  28. "public/app/**/*.ts",
  29. "public/app/**/*.tsx",
  30. "public/test/**/*.ts"
  31. ]
  32. }