next-template/tsconfig.json

45 lines
843 B
JSON
Raw Normal View History

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