24 lines
581 B
JSON
24 lines
581 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"baseUrl": "./",
|
||
|
|
"declaration": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"incremental": true,
|
||
|
|
"module": "commonjs",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"outDir": "./dist",
|
||
|
|
"removeComments": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"strict": true,
|
||
|
|
"strictPropertyInitialization": false,
|
||
|
|
"target": "ES2023",
|
||
|
|
"types": ["node"]
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts"],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|