Add tsconfig.json and tslint.json

This commit is contained in:
Ivo Senner
2016-12-13 15:08:32 +01:00
parent d87badd909
commit ce7d989b7d
2 changed files with 22 additions and 0 deletions

19
uikit/tsconfig.json Normal file
View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"uikit-tests.ts"
]
}

3
uikit/tslint.json Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "../tslint.json"
}