mirror of
https://gitee.com/WeBank/fes.js.git
synced 2024-12-02 03:37:57 +08:00
32 lines
766 B
JSON
32 lines
766 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,
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@@/*": ["./src/.fes/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
".fes.js",
|
|
".fes.*.js"
|
|
],
|
|
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
|
|
}
|