mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
40 lines
1021 B
JSON
40 lines
1021 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"esModuleInterop": true,
|
|
"inlineSources": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"lib": ["dom", "es2020"],
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noEmitOnError": true,
|
|
"outDir": "tsout",
|
|
"rootDir": ".",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": [
|
|
"**/jest-coverage/**/*",
|
|
"**/__mocks__/**/*",
|
|
"**/storybook-build/**/*",
|
|
"**/*.stories.*",
|
|
".storybook/**/*",
|
|
"app/scripts/controllers/*.test.ts",
|
|
"app/scripts/lib/**/*.test.ts",
|
|
"builds/**/*",
|
|
"dist/**/*",
|
|
"node_modules/**",
|
|
"development/ts-migration-dashboard/build/**/*",
|
|
"development/ts-migration-dashboard/intermediate/**/*",
|
|
"ui/**/*.test.js",
|
|
"ui/**/*.test.ts",
|
|
"ui/**/*.test.tsx"
|
|
],
|
|
"extends": "@tsconfig/node16/tsconfig.json",
|
|
"include": ["app", "development", "shared", "types", "ui"]
|
|
}
|