rage-framework/client/tsconfig.json

30 lines
703 B
JSON
Raw Normal View History

{
2024-06-10 19:19:36 +00:00
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base",
"exclude": [
"node_modules"
],
"compilerOptions": {
2024-06-10 19:19:36 +00:00
"incremental": true,
"composite": false,
"target": "ES2022",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleDetection": "auto",
"module": "CommonJS",
"resolveJsonModule": true,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"downlevelIteration": false,
"inlineSourceMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
2024-06-10 00:53:42 +00:00
"typeRoots": [
"@ragempcommunity/types-client"
2024-06-10 19:19:36 +00:00
]
}
}