32 lines
683 B
JSON
32 lines
683 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"target": "es2022",
|
|
"lib": ["es2022", "dom"],
|
|
"jsx": "react-jsx",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noErrorTruncation": false,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"paths": {}
|
|
},
|
|
"exclude": [
|
|
"**/.*/",
|
|
"**/build",
|
|
"**/build-tests",
|
|
"**/node_modules",
|
|
"docs/export",
|
|
"**/dist",
|
|
"**/example",
|
|
"**/scripts",
|
|
"**/stories",
|
|
"**/vite.config.ts"
|
|
]
|
|
}
|