2017-11-06 16:26:59 +01:00
|
|
|
{
|
2017-11-06 22:36:51 +07:00
|
|
|
"compilerOptions": {
|
2017-11-07 10:23:00 +07:00
|
|
|
"outDir": "dist",
|
2018-05-19 15:42:12 +07:00
|
|
|
"target": "es2016",
|
2018-04-03 19:05:59 +02:00
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
|
|
|
|
"es2015",
|
2018-05-19 15:42:12 +07:00
|
|
|
"es2016",
|
2018-07-09 20:35:16 +03:00
|
|
|
"es2017.sharedmemory",
|
|
|
|
|
"esnext.asynciterable"
|
2018-04-03 19:05:59 +02:00
|
|
|
],
|
2018-05-19 15:42:12 +07:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"newLine": "lf",
|
2017-11-07 10:23:00 +07:00
|
|
|
"stripInternal": true,
|
2018-05-04 07:29:21 +02:00
|
|
|
"strict": true,
|
2017-11-07 10:23:00 +07:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2018-05-19 15:42:12 +07:00
|
|
|
"noEmitOnError": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true
|
2017-11-07 10:23:00 +07:00
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist"
|
|
|
|
|
]
|
2017-11-06 16:26:59 +01:00
|
|
|
}
|