Skip to content

Commit

Permalink
Step 1.7: Updated typscript compiler config
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and darkbasic committed Jun 13, 2017
1 parent 166339f commit d11f3ca
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions tsconfig.json
@@ -1,25 +1,37 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"module": "commonjs",
"moduleResolution": "node",
"paths": {
"api/*": ["./api/server/*"]
},
"sourceMap": true,
"target": "es5"
"target": "es5",
"skipLibCheck": true,
"stripInternal": true,
"noImplicitAny": false,
"types": [
"meteor-typings",
"@types/underscore"
]
},
"include": [
"src/**/*.ts",
"api/**/*.ts"
],
"exclude": [
"node_modules",
"api/node_modules"
"api/node_modules",
"api"
],
"compileOnSave": false,
"atom": {
Expand Down

0 comments on commit d11f3ca

Please sign in to comment.