Files
reiverr/backend/plugins/reiverr-plugin/tsconfig.json
2025-02-08 01:40:19 +02:00

21 lines
482 B
JSON

{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"baseUrl": "./",
"target": "ES2021",
"sourceMap": true,
"incremental": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": false,
"lib": ["es6"]
},
"include": ["src/**/*.ts"]
}