Merge pull request #2 from 0xProject/tsconfig

Add initial tsconfig
This commit is contained in:
Leonid 2017-05-24 11:37:44 +02:00 committed by GitHub
commit 9008d21407
2 changed files with 21 additions and 0 deletions

6
.gitignore vendored
View File

@ -57,3 +57,9 @@ typings/
# dotenv environment variables file
.env
# built library using in commonjs module syntax
lib
# built library using es6 module syntax to enable webpack and rollup tree shaking
lib-esm
# UMD bundles that export the global variable
_bundles

15
tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"lib": [ "es2015", "dom" ],
"outDir": "lib",
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"strictNullChecks": true
},
"include": [
"./src/ts/**/*"
]
}