astro-payload-test/payload/tsconfig.json

20 lines
411 B
JSON
Raw Normal View History

2024-05-17 22:32:32 +00:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist",
"paths": {
2024-05-21 10:14:53 +00:00
"@/*": ["./src/*", "./dist/*", "./dist/src/*"],
2024-05-25 06:18:33 +00:00
"@/types/*": ["../*"]
2024-05-17 22:32:32 +00:00
},
"jsx": "react"
},
"ts-node": {
"transpileOnly": true,
"require": ["tsconfig-paths/register"]
}
}