2019-05-13 08:56:06 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
2019-05-13 12:00:56 +00:00
|
|
|
"noImplicitAny": false,
|
2019-05-25 11:36:19 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "preserve",
|
2019-05-31 01:16:04 +00:00
|
|
|
"target": "esnext",
|
2019-07-12 04:26:10 +00:00
|
|
|
"module": "esnext",
|
2019-05-13 08:56:06 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"sourceMap": true,
|
2019-06-05 06:47:05 +00:00
|
|
|
"outDir": "dist",
|
2019-05-13 08:56:06 +00:00
|
|
|
"baseUrl": ".",
|
2019-07-12 04:26:10 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": false
|
2019-05-13 08:56:06 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2019-05-14 01:15:16 +00:00
|
|
|
"index.ts",
|
|
|
|
"endpoints",
|
|
|
|
"types"
|
2019-07-12 04:26:10 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
2019-05-13 08:56:06 +00:00
|
|
|
]
|
|
|
|
}
|