2023-09-28 13:50:15 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"strict": true,
|
2024-02-02 20:49:42 +08:00
|
|
|
"noImplicitAny": false,
|
2023-09-28 13:50:15 +08:00
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "types",
|
|
|
|
"inlineSourceMap": false,
|
|
|
|
"disableSizeLimit": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"outDir": "dist",
|
|
|
|
"paths": {},
|
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
|
|
"exclude": ["node_modules", "src/demo/*", "src/main.ts", "src/components/*"]
|
|
|
|
}
|