micro-app/packages/icpx-platform/tsconfig.json

37 lines
916 B
JSON
Raw Permalink Normal View History

2023-05-30 19:27:03 +08:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": ["webpack-env", "vite/client"],
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"strictNullChecks": false,
"experimentalDecorators": true,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": false,
"skipLibCheck": true,
"importsNotUsedAsValues": "preserve"
},
"include": [
"src/App.vue",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"node_modules/ant-design-vue/typings/global.d.ts"
],
"exclude": ["node_modules/ant-design-vue/lib/**"]
}