Files
slot-game-kit/tsconfig.json
Andrey Sharshov c02d04073f initial
2025-11-16 18:48:06 +01:00

38 lines
952 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext", "DOM", "ScriptHost"],
"strict": true,
"esModuleInterop": true,
"allowJs": true,
"moduleResolution": "node",
"sourceMap": false,
"declaration": true,
"declarationMap": true,
"declarationDir": "./lib",
"outDir": "./lib",
"rootDir": "src",
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"strictNullChecks": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"noImplicitOverride": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"ignoreDeprecations": "5.0",
"allowUnusedLabels": true,
"baseUrl": "./",
"typeRoots": ["./node_modules/@types", "./types"],
"paths": {
"src/*": ["src/*"]
}
},
"include": [
"./src", "types", "./typings", "./test", "./docs-source"]
}