mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
23 lines
510 B
JSON
23 lines
510 B
JSON
{
|
|
"extends": "@adonisjs/tsconfig/tsconfig.client.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"~/*": ["./*"],
|
|
"@/*": ["../*"]
|
|
},
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.tsx"]
|
|
}
|