2018-04-20 20:07:36 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-01-31 21:35:51 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es6",
|
2019-12-23 15:54:32 +01:00
|
|
|
"outDir": "dist",
|
2018-04-20 20:07:36 +02:00
|
|
|
"lib": [
|
2019-01-31 21:35:51 +01:00
|
|
|
"es7",
|
2018-08-29 21:30:40 +02:00
|
|
|
"dom"
|
2018-04-20 20:07:36 +02:00
|
|
|
],
|
2019-12-23 17:34:01 +01:00
|
|
|
"esModuleInterop": true,
|
2019-01-31 21:35:51 +01:00
|
|
|
"sourceMap": true,
|
2018-04-20 20:07:36 +02:00
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2019-12-09 09:54:24 +01:00
|
|
|
"noImplicitAny": true,
|
|
|
|
"resolveJsonModule": true
|
2018-04-20 20:07:36 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2019-12-23 15:54:32 +01:00
|
|
|
"./types",
|
2019-01-31 21:35:51 +01:00
|
|
|
"./src/**/*",
|
|
|
|
"./test/**/*",
|
2019-12-26 11:30:46 +01:00
|
|
|
"./scripts/**/*"
|
2018-04-20 20:07:36 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2019-12-23 15:54:32 +01:00
|
|
|
"dist",
|
|
|
|
"build",
|
2019-01-31 21:35:51 +01:00
|
|
|
".vscode-test"
|
2018-04-20 20:07:36 +02:00
|
|
|
]
|
2018-08-29 21:30:40 +02:00
|
|
|
}
|