37 lines
888 B
JSON
37 lines
888 B
JSON
{
|
|
"extends": "./tsconfig.build.paths.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"outDir": "lib", /* Redirect output structure to the directory. */
|
|
"rootDir": "src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
|
// "types": [
|
|
// "node",
|
|
// "wechat-miniprogram"
|
|
// ],
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"test",
|
|
"src/pages/**/*",
|
|
"src/components/**/*"
|
|
]
|
|
} |