django-vue3-admin-web/node_modules/@fast-crud/ui-element/tsconfig.json
2025-10-20 21:21:14 +08:00

46 lines
882 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"verbatimModuleSyntax":false ,
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks" :false,
"sourceMap": true,
"baseUrl": ".",
"outDir": "./dist/ts",
"allowJs": true,
"types": [
"vite/client",
"node"
],
"paths": {
"/src/*": [ "src/*"]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}