70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"lib": ["ES2022", "DOM"],
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmitOnError": true,
|
|
"preserveConstEnums": true,
|
|
"inlineSourceMap": false,
|
|
"inlineSources": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noUncheckedIndexedAccess": false,
|
|
"allowUnusedLabels": false,
|
|
"allowUnreachableCode": false,
|
|
"useDefineForClassFields": true,
|
|
"verbatimModuleSyntax": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/types": ["./src/types"],
|
|
"@/lib/*": ["./src/lib/*"],
|
|
"@/mcp/*": ["./src/mcp/*"],
|
|
"@/cli/*": ["./src/cli/*"],
|
|
"@/wasm/*": ["./wasm/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"target",
|
|
"tests",
|
|
"wasm/pkg",
|
|
"**/*.test.js",
|
|
"**/*.spec.js",
|
|
"**/*.test.ts",
|
|
"**/*.spec.ts"
|
|
],
|
|
"ts-node": {
|
|
"esm": true,
|
|
"experimentalSpecifierResolution": "node"
|
|
}
|
|
} |