24 lines
508 B
JSON
24 lines
508 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "commonjs",
|
||
|
|
"lib": [
|
||
|
|
"ES2020"
|
||
|
|
],
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"moduleResolution": "node"
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"server.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
]
|
||
|
|
}
|