| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "commonjs",
- "lib": ["ES2022"],
- "declaration": true,
- "declarationMap": true,
- "sourceMap": true,
- "outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "strictFunctionTypes": true,
- "strictBindCallApply": true,
- "strictPropertyInitialization": true,
- "noImplicitThis": true,
- "alwaysStrict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "resolveJsonModule": true,
- "paths": {
- "web-tree-sitter": ["./src/web-tree-sitter.d.ts"]
- }
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules", "dist", "__tests__"]
- }
|