mirror of
https://github.com/wassname/talk.git
synced 2026-06-27 20:39:10 +08:00
43b6a2cdcd
* 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
33 lines
723 B
JSON
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"]
|
|
}
|