mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
c43b1b6191
* TypeScript tooling fixes * refine the dashboard ignore patterns
36 lines
812 B
JSON
36 lines
812 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",
|
|
"**/jest-coverage/**/*",
|
|
"**/__mocks__/**/*",
|
|
"**/storybook-build/**/*",
|
|
".storybook/**/*",
|
|
"builds/**/*",
|
|
"dist/**/*",
|
|
"node_modules/**",
|
|
"development/ts-migration-dashboard/build/**/*",
|
|
"development/ts-migration-dashboard/intermediate/**/*"
|
|
],
|
|
"extends": "@tsconfig/node16/tsconfig.json",
|
|
"paths": {
|
|
"*": ["./types/*"]
|
|
}
|
|
}
|