mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-14 14:45:47 +01:00
* expose original Template rendering functions * add to types * add moduleResolution * use `defaults`
16 lines
370 B
JSON
16 lines
370 B
JSON
{
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"target": "es2020",
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["cypress"],
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
/* Additional Checks */
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
}
|
|
}
|