carbon-components-svelte/tsconfig.json

25 lines
649 B
JSON

{
"compilerOptions": {
"noEmit": true,
"erasableSyntaxOnly": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"ignoreDeprecations": "5.0",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"paths": {
"carbon-components-svelte": ["./types"],
"carbon-components-svelte/*": ["./types/*"]
}
},
"include": ["src", "tests"]
}