rage-framework/tsconfig.json
Danya H 82050004f6 upd (fw):
- sharing same tsconfig
2025-01-29 14:57:58 +00:00

23 lines
459 B
JSON

{
"compilerOptions": {
"target": "es2022",
"lib": [
"ESNext",
"es2022",
"dom"
],
"moduleResolution": "node",
"module": "ESNext",
"esModuleInterop": true,
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"isolatedModules": true,
"useUnknownInCatchVariables": false,
"exactOptionalPropertyTypes": true,
"typeRoots": [
"./shared-types/types"
]
}
}