Skip to content

Commit fdfc399

Browse files
committed
fix build errors
1 parent e82c8a7 commit fdfc399

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"extends": "./tsconfig.json",
3+
"include": ["src/**/*"],
34
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
45
}

sample/25-dynamic-modules/tsconfig.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"declaration": true,
5+
"noImplicitAny": false,
56
"removeComments": true,
7+
"noLib": false,
8+
"allowSyntheticDefaultImports": true,
69
"emitDecoratorMetadata": true,
710
"experimentalDecorators": true,
8-
"target": "es2017",
11+
"target": "es6",
912
"sourceMap": true,
1013
"outDir": "./dist",
1114
"baseUrl": "./",
12-
"incremental": true
15+
"skipLibCheck": true
1316
},
14-
"exclude": ["node_modules", "dist"]
17+
"exclude": ["node_modules"]
1518
}

0 commit comments

Comments
 (0)