mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 14:40:13 -08:00
30 lines
586 B
JSON
30 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "../dist/server",
|
|
"rootDir": ".",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"../dist",
|
|
"../src"
|
|
]
|
|
} |