rojects/tsconfig.client.json

20 lines
519 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"strict": false,
"strictNullChecks": false,
"skipLibCheck": true,
"types": [],
"outDir": "build/app",
"rootDir": "source"
},
"include": ["source/**/*"],
"exclude": ["source/library-ts/**/*", "source/server/**/*", "source/auth-connector/**/*"],
"references": [
{ "path": "./source/library-ts/browser/tsconfig.roject.json" }
]
}