astro-payload-test/payload/tsconfig.json
tobias d62e7d788e
All checks were successful
continuous-integration/drone/push Build is passing
Restore dev, build & gen:types scripts
2024-05-25 08:18:33 +02:00

20 lines
411 B
JSON

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