Blame view

tsconfig.json 485 Bytes
d81889c2   ABNER SILVA DE OLIVEIRA   first typescript ...
1
2
3
4
{
    "compilerOptions": {
        "module": "commonjs",
        "target": "es5",
6738dc36   ABNER SILVA DE OLIVEIRA   migrated auth_ser...
5
        "noImplicitAny": true,
69b2897c   ABNER SILVA DE OLIVEIRA   npm test now run ...
6
        "sourceMap": true,
e7877dd6   Michel Felipe   Migrate article d...
7
        "experimentalDecorators": true
d81889c2   ABNER SILVA DE OLIVEIRA   first typescript ...
8
9
    },
    "exclude": [
9c5eb799   ABNER SILVA DE OLIVEIRA   added script to g...
10
        "dev-scripts",
d81889c2   ABNER SILVA DE OLIVEIRA   first typescript ...
11
12
        "node_modules",
        "typings/main",
69b2897c   ABNER SILVA DE OLIVEIRA   npm test now run ...
13
14
        "typings/main.d.ts",
        "node_modules/ng-forward/cjs/util/jqlite-extensions.d.ts"
37fd3f09   ABNER SILVA DE OLIVEIRA   removed js files.
15
16
17
18
19
20
21
    ],
    "compileOnSave": false,
    "atom": {
      "rewriteTsconfig": false,
      "formatOnSave": true
    }
}