Files
talk/tsconfig.json
Vinh 43b6a2cdcd [CORL-149] Persisted Queries (#2445)
* feat: enable persisted queries on the client

* fix: use `id` inside websocket message

* feat: initial server support for PQ

* feat: deeper server support

* feat: abstracted persisted query replacing logic
2019-08-15 21:03:32 +00:00

33 lines
723 B
JSON

{
"compilerOptions": {
"target": "ES2018",
"module": "commonjs",
"allowJs": true,
"noEmit": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noErrorTruncation": true,
"resolveJsonModule": true,
"lib": ["dom", "es6", "esnext.asynciterable"],
"plugins": [
{
"name": "typescript-snapshots-plugin"
}
]
},
"include": [
"./src/**/.*.js",
"./src/types/**/*.d.ts",
"./scripts/**/*",
"./config/**/*",
"*.js"
],
"exclude": ["node_modules"]
}