24 lines
486 B
JSON
24 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"lib": ["es2017"],
|
|
"strict": true,
|
|
"esModuleInterop": false,
|
|
"outDir": "dist/esm",
|
|
"declarationDir": "dist/esm",
|
|
"rootDir": "./",
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.stories.tsx"
|
|
]
|
|
}
|