27 lines
654 B
JSON
27 lines
654 B
JSON
{
|
|
"extends": "../typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"composite": false,
|
|
"importHelpers": false,
|
|
"inlineSourceMap": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"types": ["vite/client", "node"],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "vite.config.ts"]
|
|
}
|