27 lines
589 B
JSON
27 lines
589 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"outDir": "./dist/server",
|
|
"rootDir": "./",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": [
|
|
"src/server/**/*",
|
|
"api/**/*",
|
|
"netlify/functions/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |