fxa/apps/payments/next/tsconfig.json

46 строки
804 B
JSON

{
"extends": "../../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"noEmit": true,
"isolatedModules": true,
"plugins": [
{
"name": "next"
}
],
"types": [
"jest",
"node"
],
"lib": [
"dom",
"dom.iterable",
"esnext"
]
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"../../../apps/payments/next/.next/types/**/*.ts",
"../../../dist/apps/payments/next/.next/types/**/*.ts",
"next-env.d.ts",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"jest.config.ts",
"src/**/*.spec.ts",
"src/**/*.test.ts",
"**/*.stories.ts",
"**/*.stories.js"
],
"references": [
{
"path": "./tsconfig.storybook.json"
}
]
}