2021-12-21 20:42:44 +08:00
|
|
|
{
|
|
|
|
"extends": "../../config/tsconfig.base.json",
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"target": "ES6",
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
|
|
"outDir": "./lib",
|
|
|
|
"allowJs": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"jsx": "react-jsx",
|
2022-02-22 11:13:57 +08:00
|
|
|
"rootDir": "src",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "lib"
|
2021-12-21 20:42:44 +08:00
|
|
|
},
|
|
|
|
"include": ["./src"]
|
|
|
|
}
|