rage-framework/tsconfig.json

23 lines
459 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"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"
]
}
}