2023-06-15 16:34:28 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"module": "commonjs",
|
2023-08-11 14:46:43 +00:00
|
|
|
"target": "es5",
|
2023-06-15 16:34:28 +00:00
|
|
|
"lib": [
|
2023-08-11 14:46:43 +00:00
|
|
|
// "es2015",
|
2023-06-15 16:34:28 +00:00
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
2023-06-15 17:24:35 +00:00
|
|
|
"declarationDir": "./dist",
|
2023-08-11 14:46:43 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"downlevelIteration": true,
|
2023-06-15 16:34:28 +00:00
|
|
|
|
|
|
|
// "allowJs": true,
|
|
|
|
// "allowSyntheticDefaultImports": true,
|
|
|
|
// "forceConsistentCasingInFileNames": true,
|
|
|
|
// "noFallthroughCasesInSwitch": true,
|
|
|
|
// "resolveJsonModule": true,
|
|
|
|
// "isolatedModules": true,
|
|
|
|
// "noEmit": true,
|
2023-08-11 14:46:43 +00:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2023-06-15 16:34:28 +00:00
|
|
|
},
|
2023-08-11 14:46:43 +00:00
|
|
|
|
2023-06-15 16:34:28 +00:00
|
|
|
"include": [
|
2023-06-15 17:24:35 +00:00
|
|
|
"src",
|
2023-06-15 16:34:28 +00:00
|
|
|
],
|
|
|
|
"exclude": [
|
2023-08-11 14:46:43 +00:00
|
|
|
// "node_modules/data-structure-typed",
|
2023-06-15 16:34:28 +00:00
|
|
|
"node_modules",
|
|
|
|
"dist"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//{
|
|
|
|
// "compilerOptions": {
|
|
|
|
// "declaration": true,
|
|
|
|
// "outDir": "./dist",
|
|
|
|
// "module": "commonjs",
|
|
|
|
// "target": "es5",
|
|
|
|
// "lib": ["es6", "dom"],
|
|
|
|
// "strict": true,
|
|
|
|
// "esModuleInterop": true,
|
|
|
|
// "moduleResolution": "node",
|
|
|
|
// "declarationDir": "./dist/types",
|
|
|
|
// "skipLibCheck": true
|
|
|
|
// },
|
|
|
|
// "include": ["src"],
|
|
|
|
// "exclude": ["node_modules", "dist"]
|
|
|
|
//}
|