2018-10-17 15:34:36 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-10-22 16:22:16 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": { "*": ["types/*"] },
|
2018-10-17 15:34:36 +00:00
|
|
|
"module": "commonjs",
|
2018-10-23 18:59:33 +00:00
|
|
|
// "noImplicitAny": true,
|
2018-10-17 15:34:36 +00:00
|
|
|
"removeComments": true,
|
|
|
|
"moduleResolution": "node",
|
2018-10-20 14:14:37 +00:00
|
|
|
"target": "es6",
|
2018-10-23 18:59:33 +00:00
|
|
|
"outDir": "dist",
|
2018-10-17 15:34:36 +00:00
|
|
|
},
|
2018-10-20 14:14:37 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
2018-10-23 18:59:33 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules/**/*"
|
2018-10-22 16:22:16 +00:00
|
|
|
]
|
2018-10-17 15:34:36 +00:00
|
|
|
}
|