Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
465 B

  1. {
  2. "compilerOptions": {
  3. "allowSyntheticDefaultImports": false,
  4. "target": "es5",
  5. "module": "commonjs",
  6. "jsx": "react",
  7. "moduleResolution": "node",
  8. "noImplicitAny": false,
  9. "noUnusedLocals": false,
  10. "noUnusedParameters": false,
  11. "removeComments": true,
  12. "strictNullChecks": true,
  13. "preserveConstEnums": true,
  14. "sourceMap": true,
  15. "esModuleInterop": true,
  16. "lib": ["es2015", "es2016", "dom"],
  17. "types": ["node"]
  18. }
  19. }