platform/dev/prod/tsconfig.json
Andrey Sobolev 0820631e62
Upgrade svelte to 4.2.19 (#7146)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2024-11-11 14:02:41 +07:00

22 lines
458 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "esnext",
"target": "es2021",
"allowJs": true,
"declaration": true,
"sourceMap": true,
"skipLibCheck": true,
"moduleResolution": "node",
"declarationDir": "./types",
"verbatimModuleSyntax": true,
"allowSyntheticDefaultImports": true,
"lib": [
"es2016",
"dom",
"ES2021.String",
"ESNext.Array"
]
}
}