Files
jolb/tsconfig.json
2026-06-26 20:42:38 -04:00

28 lines
767 B
JSON

{
"compilerOptions": {
"outDir": "/dist",
"target": "ES2021",
"lib": ["ES2021"],
"module": "commonjs",
"rootDir": "./src",
"baseUrl": "./src",
"paths": {
"const": ["const/index.ts"],
"data": ["data/index.ts"],
"handlers": ["handlers/index.ts"],
"lib": ["lib/index.ts"],
"player-state": ["player-state/index.ts"],
"server": ["server/index.ts"],
"types": ["types/index.ts"],
"utils": ["utils/index.ts"]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["src/**/*", "src/generated", "src/lib"],
"exclude": ["node_modules"]
}