mono/packages/search/tsconfig.json
2025-03-11 11:28:14 +01:00

34 lines
630 B
JSON

{
"compilerOptions": {
"lib": [
"ES2021",
"ES2022.Object",
"dom"
],
"target": "ES6",
"module": "commonjs",
"allowJs": true,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": false,
"strictNullChecks": false,
"sourceMap": true,
"outDir": "./",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"pretty": true,
"baseUrl": "./src",
"rootDir": "./src",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": false
},
"filesGlob": [
"./src/**/*.ts"
],
"files": [
"./src/index.ts",
"./src/lib/index.ts",
"./src/main.ts"
]
}