mirror of
https://github.com/Discreetly/server.git
synced 2026-01-07 19:53:55 -05:00
24 lines
460 B
JSON
24 lines
460 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"rootDir": "./",
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"strictNullChecks": true
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
},
|
|
"files": [
|
|
"./src/server.ts"
|
|
],
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"prisma/**/*.ts"
|
|
]
|
|
} |