2022-08-11 15:29:26 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES6",
|
|
|
|
|
"lib": [
|
|
|
|
|
"DOM",
|
|
|
|
|
"ES6",
|
|
|
|
|
"DOM.Iterable",
|
|
|
|
|
"ScriptHost",
|
|
|
|
|
"ES2016.Array.Include",
|
|
|
|
|
"es2020.string",
|
|
|
|
|
"esnext"
|
|
|
|
|
],
|
|
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationDir": "build",
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react",
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"typeRoots": ["./typings", "./node_modules/@types"],
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"baseUrl": "./src",
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
2022-08-23 11:09:42 +00:00
|
|
|
"include": ["./src/**/*", "index.d.ts", "index.ts"],
|
2022-08-11 15:29:26 +00:00
|
|
|
"exclude": ["node_modules", "build"]
|
|
|
|
|
}
|