UNPKG
create-nextjs-storybook
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Install embedded Storybook route into a NextJS project
create-nextjs-storybook
/
tsconfig.json
16 lines
•
282 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions"
:
{
"moduleResolution"
:
"NodeNext"
,
"target"
:
"es2022"
,
"module"
:
"NodeNext"
,
"outDir"
:
"./dist"
,
// thanks yarn
"skipLibCheck"
:
true
,
"esModuleInterop"
:
true
,
}
,
"exclude"
:
[
"node_modules"
,
"dist"
,
"templates"
]
}