mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
29 lines
772 B
JSON
29 lines
772 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@emotion/react",
|
|
"sourceMap": true,
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@client/*": ["client/src/javascript/*"],
|
|
"@server/*": ["server/*"],
|
|
"@shared/*": ["shared/*"]
|
|
}
|
|
},
|
|
"include": ["./client/**/*.ts", "./client/**/*.tsx", "./server/**/*.ts", "./server/**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|