mirror of
https://github.com/outbackdingo/openapi-ui.git
synced 2026-01-27 10:19:49 +00:00
24 lines
591 B
JSON
24 lines
591 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "server",
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"module": "CommonJS",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"outDir": "./build",
|
|
"noImplicitAny": false
|
|
},
|
|
"include": ["server", "server/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|