annotate tsconfig.json @ 20:34cd764e234b
make interfaces into classes. factor out NormalizationService.
author |
casties |
date |
Fri, 22 Jan 2016 17:32:33 +0100 |
parents |
39ec75917ef7 |
children |
9343e43a17d1 |
rev |
line source |
0
|
1 {
|
|
2 "compilerOptions": {
|
|
3 "target": "ES5",
|
|
4 "module": "system",
|
|
5 "moduleResolution": "node",
|
|
6 "sourceMap": true,
|
|
7 "emitDecoratorMetadata": true,
|
|
8 "experimentalDecorators": true,
|
|
9 "removeComments": false,
|
|
10 "noImplicitAny": false
|
|
11 },
|
|
12 "exclude": [
|
|
13 "node_modules"
|
|
14 ]
|
|
15 }
|