mirror of
https://github.com/penxio/penx.git
synced 2026-01-12 23:18:09 -05:00
23 lines
473 B
JSON
23 lines
473 B
JSON
{
|
|
"extends": "@penx/typescript-config/base.json",
|
|
"compilerOptions": {
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"sourceMap": true,
|
|
"lib": ["ESNext", "dom", "dom.iterable"],
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"module": "esnext"
|
|
},
|
|
"include": ["./**/*.ts", "./**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|