kios-webapp/payload/tsconfig.json

19 lines
354 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist",
"paths": {
2023-06-17 10:29:34 +00:00
"@/*": ["./src/*"]
},
"jsx": "react"
},
"ts-node": {
"transpileOnly": true,
"require": ["tsconfig-paths/register"]
}
}