Only include global types for node and jest

This commit is contained in:
Elizabeth Craig 2022-08-03 18:46:19 -07:00
Родитель 9771fb5eec
Коммит 23372f3093
1 изменённых файлов: 6 добавлений и 7 удалений

Просмотреть файл

@ -1,16 +1,15 @@
{
"compilerOptions": {
/* Basic Options */
"target": "es2017" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"target": "es2017",
"module": "commonjs",
"declaration": true,
"strict": true /* Enable all strict type-checking options. */,
"strict": true,
"allowJs": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
"esModuleInterop": true,
"outDir": "./lib",
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
"forceConsistentCasingInFileNames": true,
"types": ["node", "jest"]
},
"include": ["src"]
}