tsconfig.json 959 B

1234567891011121314151617181920212223242526272829303132333435
  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. "esModuleInterop": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "importHelpers": true,
  15. "noEmitHelpers": true,
  16. "removeComments": false,
  17. "inlineSourceMap": false,
  18. "sourceMap": true,
  19. "noEmitOnError": false,
  20. "emitDecoratorMetadata": false,
  21. "experimentalDecorators": true,
  22. "noImplicitReturns": true,
  23. "noImplicitThis": true,
  24. "noImplicitUseStrict": false,
  25. "noImplicitAny": false,
  26. "noUnusedLocals": true,
  27. "baseUrl": "public",
  28. "pretty": true,
  29. "typeRoots": ["node_modules/@types", "types"],
  30. "paths": {
  31. "app": ["app"]
  32. }
  33. },
  34. "include": ["public/app/**/*.ts", "public/app/**/*.tsx", "public/test/**/*.ts"]
  35. }