Guest User

Untitled

a guest
Nov 17th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. {
  2. "compilerOptions": {
  3. "target": "es2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
  4. "lib": ["dom", "es2017", "esnext"],
  5. "module": "commonjs", /* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
  6. // "noEmit": true, /* Do not emit outputs. */
  7. "strict": true,
  8. "strictFunctionTypes": false,
  9. "noImplicitAny": false,
  10. "experimentalDecorators": true,
  11. "emitDecoratorMetadata": true,
  12. "jsx": "react",
  13. "baseUrl": ".",
  14. "allowSyntheticDefaultImports": true,
  15. "paths": {
  16. "@server/*": ["src/server/*"],
  17. "@client/*": ["src/client/*"],
  18. "@admin/*": ["src/admin/*"],
  19. "@common/*": ["src/common/*"]
  20. }
  21. },
  22. "exclude": [ "node_modules", "test" ]
  23. }
Add Comment
Please, Sign In to add comment