rage-framework/server/tsconfig.json

26 lines
604 B
JSON
Raw Normal View History

2024-06-08 22:35:14 +00:00
{
2024-06-10 19:39:59 +00:00
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base",
"exclude": [
"node_modules"
],
2024-06-08 22:35:14 +00:00
"compilerOptions": {
2024-06-10 19:59:29 +00:00
"incremental": false,
2024-06-10 19:39:59 +00:00
"composite": false,
"target": "ES2022",
"experimentalDecorators": true,
"moduleDetection": "auto",
"module": "CommonJS",
"resolveJsonModule": true,
2024-06-10 19:59:29 +00:00
"declaration": true,
2024-06-10 19:39:59 +00:00
"declarationMap": false,
"sourceMap": false,
"downlevelIteration": false,
"inlineSourceMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
2024-06-10 19:59:29 +00:00
"skipLibCheck": true
2024-06-08 22:35:14 +00:00
}
}