MikuMikuBeam/tsconfig.server.json
2025-01-26 18:45:22 -03:00

29 lines
689 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": ["*"]
},
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "server",
"allowSyntheticDefaultImports": true,
"noImplicitAny": false
},
"include": ["server/**/*.ts"],
"exclude": ["node_modules"],
"tsc-alias": {
"verbose": false,
"resolveFullPaths": true,
"fileExtensions": {
"inputGlob": "{js,jsx,mjs}",
"outputCheck": ["js", "json", "jsx", "mjs"]
}
}
}