diff options
Diffstat (limited to 'core/search-component/tsconfig.json')
-rw-r--r-- | core/search-component/tsconfig.json | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/core/search-component/tsconfig.json b/core/search-component/tsconfig.json new file mode 100644 index 00000000..6e97c848 --- /dev/null +++ b/core/search-component/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + "sourceMap": true, + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "noImplicitAny": true, + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react", + "typeRoots": [ + "./types" + ] + }, + "include": [ + "src", + "node_modules/@types/node/globals.d.ts" + ], + "exclude": [ + "./node_modules" + ] +} |