fishing-api/tsconfig.json

29 lines
705 B
JSON
Raw Normal View History

2024-02-15 02:01:36 +01:00
{
2024-02-15 09:47:35 +01:00
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
2024-02-15 02:01:36 +01:00
2024-02-15 09:47:35 +01:00
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
2024-02-15 02:01:36 +01:00
2024-02-15 09:47:35 +01:00
/* Linting */
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
2024-02-15 02:01:36 +01:00
2024-02-15 09:47:35 +01:00
"paths": {
"@server/*": ["./src/api/*"],
"@client/*": ["./src/mpp/*"],
"@util/*": ["./src/util/*"]
}
2024-02-15 02:01:36 +01:00
}
}