mirror of
https://github.com/zerotier/zerotier-one-api-spec.git
synced 2026-05-22 16:29:58 -07:00
`borp` lets node --test use typescript with actual source-mapped stacktraces and stuff
26 lines
596 B
JSON
26 lines
596 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"types": ["node"],
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"newLine": "lf",
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"isolatedModules": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"ESNext"
|
|
],
|
|
"incremental": true
|
|
}
|
|
}
|