Files
my-links/inertia/tsconfig.json
2024-06-02 23:59:57 +02:00

24 lines
626 B
JSON

{
"extends": "@adonisjs/tsconfig/tsconfig.client.json",
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"jsxImportSource": "@emotion/react",
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"paths": {
"~/*": ["./*"],
"@/*": ["../*"]
},
"types": ["vite/client", "@emotion/styled", "@emotion/react"]
},
"include": ["./**/*.ts", "./**/*.tsx"]
}