mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-17 21:53:12 +02:00
22 lines
529 B
JSON
22 lines
529 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"],
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src/**/*.ts", "package.json"]
|
|
}
|