1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/tsconfig.json
2023-03-08 09:35:16 -08:00

37 lines
834 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/**/*",
"**/*.stories.*",
".storybook/**/*",
"builds/**/*",
"dist/**/*",
"node_modules/**",
"development/ts-migration-dashboard/build/**/*",
"development/ts-migration-dashboard/intermediate/**/*"
],
"extends": "@tsconfig/node16/tsconfig.json",
"paths": {
"*": ["./types/*"]
}
}