dashboard.accords-library.com/tsconfig.json

24 lines
516 B
JSON
Raw Normal View History

2023-07-14 11:03:01 +00:00
{
"compilerOptions": {
2023-07-22 18:32:48 +00:00
"target": "ES2022",
"moduleResolution": "NodeNext",
"lib": ["dom", "dom.iterable", "esnext"],
2023-07-14 11:03:01 +00:00
"allowJs": true,
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "./dist",
"rootDir": "./src",
"jsx": "react",
"paths": {
2023-07-22 18:32:48 +00:00
"payload/generated-types": ["./src/payload-types.ts"]
2023-07-14 11:03:01 +00:00
}
},
2023-07-22 18:32:48 +00:00
"include": ["src"],
"exclude": ["node_modules", "dist", "build"],
2023-07-14 11:03:01 +00:00
"ts-node": {
"transpileOnly": true,
2023-07-22 18:32:48 +00:00
"swc": true
2023-07-14 11:03:01 +00:00
}
}