Launcher/tsconfig.json
Shadowner 40d0a1cdca To TS and Beyond !
(Prototype of course, not at all functionnall)
2023-03-08 17:51:57 +01:00

18 lines
418 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"stripInternal": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"lib": ["ES2022", "dom"],
"moduleResolution": "node"
}
}