tslint.json and tsconfig.json added.

This commit is contained in:
Deividas Bakanas
2017-07-04 19:33:31 +03:00
parent 0d302a6327
commit 642aa347d7
2 changed files with 26 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom",
"dom.iterable"
],
"jsx": "react",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"react-tooltip-tests.tsx"
]
}
+1
View File
@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }