mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-14 02:48:06 +08:00
29 lines
695 B
JSON
29 lines
695 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"jsx": "preserve",
|
|
"lib": ["esnext", "dom"],
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@@/*": ["./src/.fes/*"]
|
|
},
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"outDir": "build/dist",
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
]
|
|
|
|
}
|