mirror of
https://github.com/outline/outline.git
synced 2026-02-15 23:38:50 -06:00
49 lines
1.0 KiB
JSON
49 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"baseUrl": ".",
|
|
"jsx": "react-jsx",
|
|
"lib": [
|
|
"dom",
|
|
"es2020",
|
|
"dom.iterable",
|
|
"esnext.asynciterable"
|
|
],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noErrorTruncation": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"strictNullChecks": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"target": "es2020",
|
|
"paths": {
|
|
"@server/*": [
|
|
"./server/*"
|
|
],
|
|
"@shared/*": [
|
|
"./shared/*"
|
|
],
|
|
"~/*": [
|
|
"./app/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"server/migrations"
|
|
]
|
|
} |