mirror of
https://github.com/Discreetly/server.git
synced 2026-01-10 05:18:00 -05:00
23 lines
419 B
JSON
23 lines
419 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node",
|
|
},
|
|
"files": [
|
|
"./src/server.ts"
|
|
],
|
|
"include": [
|
|
"./src/**/*",
|
|
"./src/types/index.ts"
|
|
]
|
|
}
|