mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
59 lines
1.0 KiB
JSON
59 lines
1.0 KiB
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"files": [
|
|
"../server/app.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"rootDir": "../",
|
|
"composite": true,
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ESNext"
|
|
],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"pages",
|
|
"components",
|
|
"screens",
|
|
"lib",
|
|
"./*",
|
|
".next/types/**/*.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"../server/app.ts"
|
|
]
|
|
}
|