fes.js/packages/fes-template-h5/tsconfig.json

32 lines
766 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "build/dist",
"module": "esnext",
"target": "esnext",
2022-11-10 17:48:34 +08:00
"lib": ["esnext", "dom"],
"sourceMap": true,
"baseUrl": ".",
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"allowJs": true,
2022-11-10 17:48:34 +08:00
"skipLibCheck": true,
"experimentalDecorators": true,
"strict": true,
"paths": {
2022-11-10 17:48:34 +08:00
"@/*": ["./src/*"],
"@@/*": ["./src/.fes/*"]
}
},
"include": [
"src/**/*",
2022-11-10 17:48:34 +08:00
".fes.js",
".fes.*.js"
],
2022-11-10 17:48:34 +08:00
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
}