2019-03-06 09:25:58 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"types/*"
|
|
|
|
]
|
|
|
|
},
|
2019-06-02 22:06:25 +02:00
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
2019-03-06 09:25:58 +01:00
|
|
|
"removeComments": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"lib": [
|
|
|
|
"es2015",
|
|
|
|
"es2017",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"alwaysStrict": true,
|
2019-05-22 21:43:04 +02:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"esModuleInterop": true
|
2019-03-06 09:25:58 +01:00
|
|
|
},
|
|
|
|
"include": [
|
2019-05-27 20:04:32 +02:00
|
|
|
"src/**/*.ts",
|
|
|
|
"deploy.ts"
|
2019-03-06 09:25:58 +01:00
|
|
|
],
|
|
|
|
"exclude": [
|
2019-06-04 15:04:25 +02:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
2019-03-06 09:25:58 +01:00
|
|
|
]
|
|
|
|
}
|