converter/tsconfig.json

22 lines
411 B
JSON
Raw Normal View History

{
"compileOnSave": false,
"compilerOptions": {
2018-08-31 21:25:24 +02:00
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
2024-01-22 00:51:24 +01:00
"module": "ES2022",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2024-01-22 00:51:24 +01:00
"target": "ES2022",
"typeRoots": [
"node_modules/@types"
],
"lib": [
2024-01-22 00:51:24 +01:00
"ES2017",
"DOM"
]
}
}