We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8525920 commit 2b936feCopy full SHA for 2b936fe
1 file changed
tsconfig.json
@@ -1,25 +1,36 @@
1
{
2
"compilerOptions": {
3
"allowSyntheticDefaultImports": true,
4
+ "baseUrl": ".",
5
"declaration": false,
6
"emitDecoratorMetadata": true,
7
"experimentalDecorators": true,
8
"lib": [
9
"dom",
10
"es2015"
11
],
- "module": "es2015",
12
+ "module": "commonjs",
13
"moduleResolution": "node",
14
+ "paths": {
15
+ "api/*": ["./api/server/*"]
16
+ },
17
"sourceMap": true,
- "target": "es5"
18
+ "target": "es5",
19
+ "skipLibCheck": true,
20
+ "stripInternal": true,
21
+ "noImplicitAny": false,
22
+ "types": [
23
+ "@types/meteor"
24
+ ]
25
},
26
"include": [
27
"src/**/*.ts",
28
"api/**/*.ts"
29
30
"exclude": [
31
"node_modules",
- "api/node_modules"
32
+ "api/node_modules",
33
+ "api"
34
35
"compileOnSave": false,
36
"atom": {
0 commit comments