+
{{group.id}}
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 28f8883..cb7d540 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -6,10 +6,11 @@ import { MyListComponent } from './my-list/my-list.component';
import { DragDropModule } from '@angular/cdk/drag-drop';
import { DragScrollModule } from 'cdk-drag-scroll';
import { ScrollDetectorDirective } from './scroll-detector.directive';
+import { CommonModule } from '@angular/common';
@NgModule({
declarations: [AppComponent, MyListComponent, ScrollDetectorDirective],
- imports: [BrowserModule, DragDropModule, DragScrollModule],
+ imports: [BrowserModule, DragDropModule, DragScrollModule, CommonModule],
providers: [],
bootstrap: [AppComponent]
})
diff --git a/src/tsconfig.app.json b/src/tsconfig.app.json
index 190fd30..f3a1b80 100644
--- a/src/tsconfig.app.json
+++ b/src/tsconfig.app.json
@@ -4,8 +4,11 @@
"outDir": "../out-tsc/app",
"types": []
},
- "exclude": [
- "test.ts",
- "**/*.spec.ts"
+ "files": [
+ "main.ts",
+ "polyfills.ts"
+ ],
+ "include": [
+ "src/**/*.d.ts"
]
}
diff --git a/tsconfig.json b/tsconfig.json
index a2b3e5a..cf48113 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,7 +5,7 @@
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
- "module": "es2015",
+ "module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
diff --git a/tslint.json b/tslint.json
index f716c48..bd6ba1f 100644
--- a/tslint.json
+++ b/tslint.json
@@ -73,7 +73,6 @@
"no-trailing-whitespace": true,
"no-unnecessary-initializer": true,
"no-unused-expression": true,
- "no-use-before-declare": true,
"no-var-keyword": true,
"object-literal-sort-keys": false,
"one-line": [