@cc-heart/utils
Version:
🔧 javascript common tools collection
35 lines (34 loc) • 844 B
JSON
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"outDir": "dist/types",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "ESNext",
"moduleResolution": "node",
"allowJs": false,
"downlevelIteration": true,
"importHelpers": true,
"sourceMap": false,
"stripInternal": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"noEmit": true
},
"exclude": [
"__test__/**/*",
"node_modules/**/*",
"rollup.config.js",
"types/**/*"
]
}