mono/packages/typescript-config/base.json
2025-02-07 07:14:58 +01:00

21 lines
429 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"declaration": true,
"strict": false,
"moduleResolution": "nodenext",
"target": "es2022",
"module": "NodeNext",
"esModuleInterop": true,
"skipLibCheck": true,
"stripInternal": true,
"allowSyntheticDefaultImports": true,
"lib": [
"ES2022",
"DOM",
"DOM.Iterable",
"WebWorker.ImportScripts"
]
}
}