mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
27 lines
553 B
JSON
27 lines
553 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"inlineSources": true,
|
||
|
"isolatedModules": true,
|
||
|
"jsx": "react",
|
||
|
"lib": ["dom", "es2020"],
|
||
|
"moduleResolution": "node",
|
||
|
"noEmitOnError": true,
|
||
|
"outDir": "tsout",
|
||
|
"rootDir": ".",
|
||
|
"sourceMap": true,
|
||
|
"strict": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"**/*.test.js",
|
||
|
"**/*.test.ts",
|
||
|
"**/*.test.tsx",
|
||
|
".storybook/**/*",
|
||
|
"builds/**/*",
|
||
|
"dist/**/*",
|
||
|
"node_modules/**"
|
||
|
],
|
||
|
"extends": "@tsconfig/node14/tsconfig.json"
|
||
|
}
|