diff --git a/remix-tests/tsconfig.json b/remix-tests/tsconfig.json index 2b116c7eee..7a57fc3cef 100644 --- a/remix-tests/tsconfig.json +++ b/remix-tests/tsconfig.json @@ -1,7 +1,6 @@ { "include": ["src"], "compilerOptions": { - /* Basic Options */ "target": "es5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ "lib": ["dom", "es2018"], /* Specify library files to be included in the compilation. */ @@ -11,11 +10,13 @@ /* Strict Type-Checking Options */ "strict": true, /* Enable all strict type-checking options. */ "noImplicitAny": false, /* Raise error on expressions and declarations with an implied 'any' type. */ - /* Module Resolution Options */ "baseUrl": "./src", /* Base directory to resolve non-absolute module names. */ "paths": { "remix-tests": ["./"] }, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */ - "typeRoots": ["node_modules/@types"], /* List of folders to include type definitions from. */ + "typeRoots": [ + "./@types", + "./node_modules/@types" + ], "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ /* Experimental Options */ "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */