37 lines
852 B
JSON
Executable File
37 lines
852 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"module": "CommonJS",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"alwaysStrict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": true,
|
|
"lib": ["ES2020"],
|
|
// "moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["*", "miniprogram/*"],
|
|
"tdesign-miniprogram/*":["./miniprogram/miniprogram_npm/tdesign-miniprogram/*"]
|
|
},
|
|
"typeRoots": [
|
|
"./typings"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|