Complete the ts-configuration of the app

This commit is contained in:
Manuel Thalmann 2019-11-24 15:10:07 +00:00
parent 2dd3a6161a
commit 1ad03d1d41
2 changed files with 10 additions and 0 deletions

View file

@ -1,13 +1,20 @@
{
"extends": "@manuth/tsconfig/recommended",
"files": [
"src/main.ts"
],
"compilerOptions": {
"rootDir": "src",
"module": "commonjs",
"lib": [
"es7",
"dom"
],
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"target": "es5"
}
}

3
src/App/tslint.json Normal file
View file

@ -0,0 +1,3 @@
{
"extends": "@manuth/tslint-presets/recommended"
}