library-template/tsconfig.json

30 lines
581 B
JSON
Raw Permalink Normal View History

2024-01-21 14:13:07 -06:00
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"moduleResolution": "node",
"esModuleInterop": true,
"noUnusedLocals": true,
"outDir": "./dist",
"declaration": true,
"target": "esnext",
"module": "esnext",
"jsx": "react",
"strict": false,
"noImplicitAny": false,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}