Files

20 lines
540 B
JSON
Raw Permalink Normal View History

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"jsx": "preserve",
"module": "ESNext",
"moduleResolution": "bundler",
"allowJs": true,
"isolatedModules": true,
"noEmit": true,
"plugins": [{ "name": "next" }],
"paths": {
"@/*": ["./*"],
"@project-e/shared": ["../../packages/shared/src"],
"@project-e/shared/*": ["../../packages/shared/src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules", "__tests__"]
}