Files
my-links/inertia/tsconfig.json
2024-11-15 18:42:42 +01:00

15 lines
307 B
JSON

{
"extends": "@adonisjs/tsconfig/tsconfig.client.json",
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"jsx": "react-jsx",
"resolveJsonModule": true,
"paths": {
"~/*": ["./*"],
"config-ssr": ["../config/ssr"]
}
},
"include": ["./**/*.ts", "./**/*.tsx", "../config/ssr.ts"]
}