mirror of
https://github.com/outline/outline.git
synced 2026-08-03 13:27:25 +03:00
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "es2020", "dom.iterable", "esnext.asynciterable"],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolvePackageJsonExports": false,
|
|
"noErrorTruncation": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"noEmit": true,
|
|
"strictBindCallApply": true,
|
|
"skipLibCheck": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"target": "es2020",
|
|
"paths": {
|
|
"@server/*": ["./server/*"],
|
|
"@shared/*": ["./shared/*"],
|
|
"~/*": ["./app/*"],
|
|
"plugins/*": ["./plugins/*"],
|
|
// Vite 8 and its plugins ship types only via their exports map, which
|
|
// resolvePackageJsonExports disables; point tsc at their declaration entries.
|
|
"vite": ["./node_modules/vite/dist/node/index.d.ts"],
|
|
"@vitejs/plugin-react": ["./node_modules/@vitejs/plugin-react/dist/index.d.ts"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "build", "server/migrations"]
|
|
}
|