rage-framework/tsconfig.json
Danya H 179d7b8b93 upd (fw):
- eslint config
- correct tsconfigs
2025-01-28 22:44:54 +00:00

23 lines
459 B
JSON

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