Core/tsconfig.json

28 lines
546 B
JSON
Raw Normal View History

{
2025-06-23 20:31:34 +02:00
"ts-node": {
"compilerOptions": {
"module": "ESNext",
"types": ["node"]
}
},
2022-10-16 01:19:45 +02:00
2025-06-23 20:31:34 +02:00
"compilerOptions": {
"outDir": "./lib/",
"incremental": true,
"sourceMap": true,
"noImplicitAny": true,
"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"]
}
}