Advertisement
Guest User

tsconfig.json/choco

a guest
Oct 29th, 2015
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.94 KB | None | 0 0
  1. {
  2.     "version": "1.6.2",
  3.     "transpiler": "typescript",
  4.     "compileOnSave": true,
  5.     "compilerOptions": {
  6.         "target": "es6",
  7.         "declaration": false,
  8.         "noImplicitAny": false,
  9.         "removeComments": true,
  10.         "emitDecoratorMetadata": true,
  11.         "experimentalDecorators": true,
  12.         "noLib": false,
  13.         "outDir": "build"
  14.     },
  15.     "filesGlob": [
  16.         "./src/**/*.ts",
  17.         "./node_modules/angular2/typings/**/*.ts",
  18.         "!./node_modules/angular2/typings/*.d.ts",
  19.         "!./node_modules/angular2/typings/es6-shim/*.ts",
  20.         "!./node_modules/angular2/typings/node/*.ts",
  21.         "./typings/**/*.ts",
  22.         "!./typings/*.d.ts"
  23.     ],
  24.     "files": [
  25.         "./src/tsc/main.ts",
  26.         "./src/tsc/server/appServerCluster.ts",
  27.         "./src/tsc/server/bootstrap.ts",
  28.         "./src/tsc/server/expressServer.ts",
  29.         "./src/tsc/server/routes.ts",
  30.         "./src/tsc/webapp/appBootstrap.ts",
  31.         "./src/tsc/webapp/cart.ts",
  32.         "./src/tsc/webapp/cartService.ts",
  33.         "./src/tsc/webapp/catalogService.ts",
  34.         "./src/tsc/webapp/home.ts",
  35.         "./src/tsc/webapp/htmlRoute.ts",
  36.         "./src/tsc/webapp/product.ts",
  37.         "./src/tsc/webapp/productCmp.ts",
  38.         "./src/tsc/webapp/shop.ts",
  39.         "./node_modules/angular2/typings/angular-protractor/angular-protractor.d.ts",
  40.         "./node_modules/angular2/typings/hammerjs/hammerjs.d.ts",
  41.         "./node_modules/angular2/typings/jasmine/jasmine.d.ts",
  42.         "./node_modules/angular2/typings/selenium-webdriver/selenium-webdriver.d.ts",
  43.         "./node_modules/angular2/typings/zone/zone.d.ts",
  44.         "./typings/body-parser/body-parser.d.ts",
  45.         "./typings/express/express.d.ts",
  46.         "./typings/mime/mime.d.ts",
  47.         "./typings/node/node.d.ts",
  48.         "./typings/rx/rx-lite.d.ts",
  49.         "./typings/rx/rx.d.ts",
  50.         "./typings/serve-static/serve-static.d.ts"
  51.     ],
  52.     "exclude": []
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement