Core/tsconfig.json

31 lines
600 B
JSON
Raw Permalink Normal View History

{
2022-10-16 01:19:45 +02:00
"ts-node": {
"compilerOptions": {
"module": "ESNext",
"types": ["node"],
2022-10-16 01:19:45 +02:00
}
},
"compilerOptions": {
"outDir": "./lib/",
"incremental": true,
"sourceMap": true,
"noImplicitAny": true,
2024-10-04 21:24:11 +02:00
"noImplicitThis": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"declarationMap": true,
"module": "ES6",
"target": "ES6",
"moduleResolution": "Bundler",
"lib": [
"ESNext",
"DOM"
2024-10-04 21:24:11 +02:00
]
}
}