spica
Version:
Supervisor, Coroutine, Channel, select, AtomicPromise, Cancellation, Cache, List, Queue, Stack, and some utils.
37 lines (36 loc) • 827 B
JSON
{
"compilerOptions": {
// Bug: ES2022 breaks the class init order.
"target": "ES2021",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"outDir": "dist",
"module": "ES2022",
"moduleResolution": "bundler",
"esModuleInterop": true,
"sourceMap": true,
"strict": true,
"strictFunctionTypes": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"suppressImplicitAnyIndexErrors": true,
"ignoreDeprecations": "5.0",
"noFallthroughCasesInSwitch": true,
"noErrorTruncation": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"*.ts",
"src/**/*.ts",
"test/**/*.ts",
"benchmark/**/*.ts"
],
"exclude": [
"node_modules"
]
}