2018-09-25 08:30:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-10-04 13:13:24 +02:00
|
|
|
"resolveJsonModule": true,
|
2018-09-25 08:30:54 +02:00
|
|
|
"lib": [
|
|
|
|
"es6",
|
|
|
|
"es7"
|
|
|
|
],
|
2018-09-26 16:58:11 +02:00
|
|
|
"declaration": true,
|
2018-10-11 14:16:59 +02:00
|
|
|
"noUnusedLocals": true,
|
2018-09-25 08:30:54 +02:00
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"rootDir": "./src/",
|
|
|
|
"sourceMap": true
|
|
|
|
},
|
|
|
|
"include": [
|
2018-10-11 14:24:22 +02:00
|
|
|
"src/**/*"
|
2018-09-25 08:30:54 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2018-10-01 18:10:26 +02:00
|
|
|
"**/*.test.ts"
|
2018-09-25 08:30:54 +02:00
|
|
|
]
|
2018-09-25 09:14:01 +02:00
|
|
|
}
|