2024-01-29 15:53:05 -06:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "preserve",
|
2024-02-20 10:11:54 -06:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"],
|
|
|
|
"vComponents/*": ["./node_modules/vComponents/dist/components/*"],
|
|
|
|
"via-ui/*": ["./node_modules/via-ui/dist/components/*"]
|
|
|
|
},
|
2024-01-29 15:53:05 -06:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true,
|
2024-02-20 10:11:54 -06:00
|
|
|
"module": "esnext",
|
2024-01-29 15:53:05 -06:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2024-02-20 10:11:54 -06:00
|
|
|
"target": "es5",
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"]
|
2024-01-29 15:53:05 -06:00
|
|
|
},
|
2024-02-20 10:11:54 -06:00
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
|
|
|
|
"exclude": ["node_modules"]
|
2024-01-29 15:53:05 -06:00
|
|
|
}
|