mirror of
https://github.com/Choices-js/Choices.git
synced 2026-03-15 15:15:46 +01:00
23 lines
586 B
JSON
23 lines
586 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es6",
|
|
"lib": ["es2017", "dom"],
|
|
"target": "ES2020",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"strict": false,
|
|
"noImplicitAny": false,
|
|
"allowJs": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strictNullChecks": true,
|
|
"newLine": "lf",
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"types": ["@types/node"],
|
|
},
|
|
"include": [".", "../src"],
|
|
"exclude": ["**/node_modules", "**/public"]
|
|
}
|