23 lines
663 B
JSON
23 lines
663 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"lib": ["ES2020"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"types": ["node"]
|
|
},
|
|
"include": ["src/server/**/*.ts", "src/shared/**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|