Complete the ts-configuration of the app
This commit is contained in:
parent
2dd3a6161a
commit
1ad03d1d41
|
@ -1,13 +1,20 @@
|
||||||
{
|
{
|
||||||
|
"extends": "@manuth/tsconfig/recommended",
|
||||||
"files": [
|
"files": [
|
||||||
"src/main.ts"
|
"src/main.ts"
|
||||||
],
|
],
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"rootDir": "src",
|
"rootDir": "src",
|
||||||
|
"module": "commonjs",
|
||||||
"lib": [
|
"lib": [
|
||||||
"es7",
|
"es7",
|
||||||
"dom"
|
"dom"
|
||||||
],
|
],
|
||||||
|
"plugins": [
|
||||||
|
{
|
||||||
|
"name": "typescript-tslint-plugin"
|
||||||
|
}
|
||||||
|
],
|
||||||
"target": "es5"
|
"target": "es5"
|
||||||
}
|
}
|
||||||
}
|
}
|
3
src/App/tslint.json
Normal file
3
src/App/tslint.json
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"extends": "@manuth/tslint-presets/recommended"
|
||||||
|
}
|
Loading…
Reference in a new issue