brackt/tsconfig.server.json

43 lines
910 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"compilerOptions": {
"composite": false,
"noEmit": false,
"outDir": "./dist/server",
"rootDir": ".",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node",
"lib": ["ES2022"],
"types": ["node"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@/*": ["./app/*"],
"~/database/*": ["./database/*"],
"~/server/*": ["./server/*"]
}
},
"include": [
"server.ts",
"server/**/*.ts",
"database/**/*.ts",
"app/database/**/*.ts",
"app/models/**/*.ts",
"app/lib/**/*.ts"
],
"exclude": [
"node_modules",
"build",
"dist",
"**/*.test.ts",
"**/*.spec.ts"
]
}