Files
Country-Wars-Reborn/tsconfig.json

55 lines
1.4 KiB
JSON
Raw Normal View History

2025-11-12 21:51:18 +01:00
{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// File Layout
"rootDir": "./src",
"outDir": "./dist",
// Environment Settings
// See also https://aka.ms/tsconfig/module
"module": "nodenext",
"target": "esnext",
"types": [
"node"
],
// For nodejs:
"lib": [
"esnext"
],
// "types": ["node"],
// and npm install -D @types/node
// Other Outputs
// "sourceMap": true,
// "declaration": true,
// "declarationMap": true,
// Stricter Typechecking Options
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Style Options
// "noImplicitReturns": true,
// "noImplicitOverride": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true,
// "noPropertyAccessFromIndexSignature": true,
// Recommended Options
"strict": true,
"jsx": "react-jsx",
"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"skipLibCheck": true,
"plugins": [
{
"transform": "typia/lib/transform"
}
],
"strictNullChecks": true,
"incremental": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"tsBuildInfoFile": "dist/.tsbuildinfo"
2025-11-12 21:51:18 +01:00
},
"include": [
"src"
]
}