mirror of
https://github.com/zoriya/flood.git
synced 2025-12-05 23:06:20 +00:00
21 lines
489 B
JSON
21 lines
489 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2020",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"module": "commonjs",
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"baseUrl": "../",
|
|
"paths": {
|
|
"@shared/*": ["shared/*"]
|
|
},
|
|
"outDir": "../dist"
|
|
},
|
|
"include": ["./**/*.ts", "../shared/**/*.ts", "../config.js", "../config.ts"]
|
|
}
|