refined-text-search
Version:
Tokenize a search query with refined options (like Google's) and match against a target
34 lines (31 loc) • 797 B
JSON
{
"compilerOptions": {
// Output Options
"target": "es2015",
"module": "commonjs",
"jsx": "react",
"noEmitOnError": true,
"newLine": "lf",
"outDir": "dist/",
"baseUrl": "./",
"declaration": true,
"sourceMap": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"incremental": true,
// Type-Checking Options
"lib": ["esnext"],
"strict": true,
"skipLibCheck": true,
"strictPropertyInitialization": false,
// Module Resolution Options
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"allowJs": false
},
"include": ["src/", "tests/"]
}