23 lines
519 B
JSON
23 lines
519 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./types"
|
|
],
|
|
"paths": {
|
|
"ws": ["./node_modules/ws/index.js"],
|
|
"@types/ws": ["./node_modules/@types/ws/index.d.ts"]
|
|
}
|
|
}
|
|
}
|