You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
{ |
|
"compilerOptions": { |
|
"target": "ES5", |
|
"jsx": "react-jsx", |
|
"jsxImportSource": "@antv/f2", |
|
"lib": ["ESNext"], |
|
"moduleDetection": "force", |
|
"experimentalDecorators": true, |
|
"baseUrl": "", |
|
"module": "CommonJS", |
|
"paths": { |
|
"@vant/weapp/*": ["node_modules/@vant/weapp/dist/*"], |
|
"@/*": ["src/*"], |
|
"@galacean": ["node_modules/@galacean/*"] |
|
}, |
|
"typeRoots": ["./typings"], |
|
"types": ["miniprogram-api-typings"], |
|
"allowJs": false, |
|
"strict": true, |
|
"strictNullChecks": true, |
|
"strictPropertyInitialization": true, |
|
"alwaysStrict": true, |
|
"noFallthroughCasesInSwitch": true, |
|
"noImplicitAny": false, |
|
"noImplicitReturns": true, |
|
"noImplicitThis": true, |
|
"noUnusedLocals": true, |
|
"noUnusedParameters": true, |
|
"inlineSourceMap": true, |
|
"inlineSources": true, |
|
"removeComments": true, |
|
"allowSyntheticDefaultImports": true, |
|
"esModuleInterop": true, |
|
"pretty": true |
|
}, |
|
"exclude": ["node_modules", "miniprogram_npm"] |
|
}
|
|
|