mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
1d0ef3e321
Follow-up from #15131
31 lines
614 B
JSON
31 lines
614 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"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/node16/tsconfig.json",
|
|
"paths": {
|
|
"*": ["./types/*"]
|
|
}
|
|
}
|