Skip to content

Commit 2b936fe

Browse files
dotansimhadarkbasic
authored andcommitted
Step 1.8: Updated typscript compiler config
1 parent 8525920 commit 2b936fe

1 file changed

Lines changed: 14 additions & 3 deletions

File tree

tsconfig.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,36 @@
11
{
22
"compilerOptions": {
33
"allowSyntheticDefaultImports": true,
4+
"baseUrl": ".",
45
"declaration": false,
56
"emitDecoratorMetadata": true,
67
"experimentalDecorators": true,
78
"lib": [
89
"dom",
910
"es2015"
1011
],
11-
"module": "es2015",
12+
"module": "commonjs",
1213
"moduleResolution": "node",
14+
"paths": {
15+
"api/*": ["./api/server/*"]
16+
},
1317
"sourceMap": true,
14-
"target": "es5"
18+
"target": "es5",
19+
"skipLibCheck": true,
20+
"stripInternal": true,
21+
"noImplicitAny": false,
22+
"types": [
23+
"@types/meteor"
24+
]
1525
},
1626
"include": [
1727
"src/**/*.ts",
1828
"api/**/*.ts"
1929
],
2030
"exclude": [
2131
"node_modules",
22-
"api/node_modules"
32+
"api/node_modules",
33+
"api"
2334
],
2435
"compileOnSave": false,
2536
"atom": {

0 commit comments

Comments
 (0)