rage-framework/tsconfig.json

19 lines
427 B
JSON
Raw Normal View History

2024-06-08 22:35:14 +00:00
{
"compilerOptions": {
2024-06-10 00:53:42 +00:00
"target": "ESNext",
2024-06-10 14:28:22 +00:00
"lib": ["ESNext","ES2019"],
"moduleResolution": "node",
2024-06-10 00:53:42 +00:00
"module": "ESNext",
"esModuleInterop": true,
2024-06-10 14:28:22 +00:00
"strict": true,
2024-06-10 00:53:42 +00:00
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"isolatedModules": true,
"useUnknownInCatchVariables": false,
"exactOptionalPropertyTypes": true,
"typeRoots": [
"./shared-types/types"
]
2024-06-08 22:35:14 +00:00
}
}