Advertisement
mattjeanes

Angular 2 tsconfig

Jan 18th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.56 KB | None | 0 0
  1. {
  2.   "compilerOptions": {
  3.     "target": "es6",
  4.     "module": "commonjs",
  5.     "typeRoots": [
  6.       "node_modules/@types",
  7.       "node_modules/@angular"
  8.     ],
  9.     "moduleResolution": "node",
  10.     "sourceMap": true,
  11.     "strictNullChecks": true,
  12.     "noUnusedLocals": true,
  13.     "noImplicitThis": true,
  14.     "noImplicitReturns": true,
  15.     "noImplicitAny": true,
  16.     "suppressImplicitAnyIndexErrors": true,
  17.     "alwaysStrict": true,
  18.     "emitDecoratorMetadata": true,
  19.     "experimentalDecorators": true,
  20.     "skipLibCheck": true
  21.   },
  22.   "compileOnSave": true
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement