47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
||
|
|
"compilerOptions": {
|
||
|
|
"ignoreDeprecations": "6.0",
|
||
|
|
"target": "ES2022",
|
||
|
|
"lib": ["ES2022"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"strictFunctionTypes": true,
|
||
|
|
"strictBindCallApply": true,
|
||
|
|
"strictPropertyInitialization": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"useUnknownInCatchVariables": true,
|
||
|
|
"alwaysStrict": true,
|
||
|
|
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"exactOptionalPropertyTypes": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noPropertyAccessFromIndexSignature": true,
|
||
|
|
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"files": [],
|
||
|
|
"references": [
|
||
|
|
{ "path": "./crates/kreuzberg-node" },
|
||
|
|
{ "path": "./crates/kreuzberg-wasm" },
|
||
|
|
{ "path": "./packages/typescript/core" },
|
||
|
|
{ "path": "./e2e/wasm-workers" }
|
||
|
|
]
|
||
|
|
}
|