rage-framework/client/tsconfig.json

27 lines
640 B
JSON
Raw Permalink 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:59:29 +00:00
"incremental": false,
2024-06-10 19:19:36 +00:00
"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,
2024-06-10 19:59:29 +00:00
"skipLibCheck": true
}
}