29 lines
689 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|