mirror of
https://github.com/zoriya/flood.git
synced 2026-06-08 04:41:03 +00:00
22 lines
542 B
JSON
22 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@shared/*": ["shared/*"]
|
|
}
|
|
},
|
|
"include": ["./client/**/*.ts", "./client/**/*.tsx", "./server/**/*.ts", "./server/**/*.tsx", "./custom.d.ts"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|