1234567891011121314 |
- {
- "compilerOptions": {
- "strictPropertyInitialization": false,
- "noImplicitAny": false,
- "target": "ESnext",
- "module": "commonjs",
- "declaration": true,
- "outDir": "./lib",
- "strict": true,
- "experimentalDecorators": true
- },
- "include": ["src/backend/**/*", "test/**/*"],
- "exclude": ["node_modules", "**/__tests__/*", "src/frontend/**/*"]
- }
|