mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-02 11:47:47 +08:00
47 lines
869 B
JSON
47 lines
869 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "build/dist",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "node",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true,
|
|
"allowJs": true,
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@@/*": [
|
|
"./src/.fes/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"*.js",
|
|
".fes.js",
|
|
"src/**/*",
|
|
"typings/**/*",
|
|
"config/**/*",
|
|
"src/.fes/configType.d.ts"
|
|
],
|
|
"exclude": [
|
|
"build",
|
|
"dist",
|
|
"scripts",
|
|
"webpack",
|
|
"jest",
|
|
"node_modules"
|
|
]
|
|
} |