valkyrie-api-types/tsconfig.json

33 lines
710 B
JSON
Raw Normal View History

2024-09-11 22:51:40 -07:00
{
"compileOnSave": true,
"compilerOptions": {
"alwaysStrict": true,
"lib": [
"esnext"
],
"module": "commonjs",
"ignoreDeprecations": "5.0",
"noUnusedParameters": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"noUnusedLocals": true,
"removeComments": false,
"target": "ES2018",
"importsNotUsedAsValues": "error",
"strictNullChecks": true,
"preserveConstEnums": true,
"exactOptionalPropertyTypes": true
},
"include": [
"globals.ts",
"v9.ts",
"gateway/**/*.ts",
"payloads/**/*.ts",
"rest/**/*.ts",
"rpc/**/*.ts",
"utils/**/*.ts",
"voice/**/*.ts",
2024-09-11 23:45:21 -07:00
"valkyriechat/**/*.ts"
2024-09-11 22:51:40 -07:00
]
}