Move index.ts and adapt settings to folders

This commit is contained in:
Lukas Tetzlaff 2017-11-02 02:39:50 +01:00
parent a9f4ca3e57
commit 0118e26a0b
3 changed files with 7 additions and 8 deletions

5
.gitignore vendored
View file

@ -1,5 +1,4 @@
node_modules
yarn.lock
index.js
index.d.ts
index.js.map
dist/**/*.js*
dist/**/*.d.ts

View file

@ -5,13 +5,13 @@
"strict": true,
"declaration": true,
"sourceMap": true,
"outDir": ".",
"outDir": "dist",
"lib": [
"es2015"
"es2015", "dom", "scripthost"
]
},
"include": [
"index.ts"
],
"exclude": []
"src/**/*.ts",
"tests/**/*.ts"
]
}