2017-05-13 16:12:26 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
|
|
|
"moduleResolution": "node",
|
2017-05-25 13:09:29 +00:00
|
|
|
"noImplicitAny": true,
|
2017-05-13 16:12:26 +00:00
|
|
|
"sourceMap": true,
|
2017-05-25 13:09:29 +00:00
|
|
|
"removeComments": true,
|
2017-05-13 16:12:26 +00:00
|
|
|
"outDir": "dist",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
2017-05-25 13:09:29 +00:00
|
|
|
"./src/types/*",
|
|
|
|
"./node_modules/@types/*"
|
2017-05-13 16:12:26 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2017-05-25 13:09:29 +00:00
|
|
|
"includes": [
|
2017-05-16 21:17:46 +00:00
|
|
|
"src/**/*",
|
|
|
|
"test/**/*"
|
2017-05-13 16:12:26 +00:00
|
|
|
]
|
|
|
|
}
|