Files
cunkebao_v3/Touchkebao/tsconfig.json

29 lines
763 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": false,
"noImplicitAny": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@weChatStore/*": ["src/store/module/weChat/*"],
"@storeModule/*": ["src/store/module/*"],
"@apiModule/*": ["src/api/module/*"],
"@utils/*": ["src/utils/*"]
}
},
"include": ["src"]
}