rage-framework/tsconfig.json

19 lines
434 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-13 01:18:33 +00:00
"lib": ["ESNext","ES2019", "ES6"],
2024-06-10 14:28:22 +00:00
"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
}
}