Skip to content

Commit

Permalink
[ui] Add missing "tsconfig.json"
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jun 6, 2019
1 parent 22a7c74 commit 70dfd82
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ IP Navigator CHANGES

Development
===========

- [ui] Add missing ``tsconfig.json``. Thanks, Andrii.

2019-05-29 0.168.0
==================
Expand Down
29 changes: 29 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"include": [
"patzilla-ui"
],
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "esnext",
"rootDir": "./patzilla-ui",
"baseUrl": "./patzilla-ui",
"lib": ["dom", "es2015", "es2016"],
"declaration": false,
"allowSyntheticDefaultImports": true,
"inlineSourceMap": false,
"sourceMap": true,
"jsx": "react",
"noEmitOnError": false,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"noImplicitUseStrict": false,
"noImplicitAny": false,
"noUnusedLocals": false,
"strictNullChecks": true,
"moduleResolution": "node",
"esModuleInterop": true
}
}

0 comments on commit 70dfd82

Please sign in to comment.