Files
spend-ia/packages/client/tsconfig.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"
]
}