mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
39 lines
No EOL
890 B
JSON
39 lines
No EOL
890 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"jsx": "preserve", // "vue", 'preserve', 'react'
|
|
"outDir": "./dist",
|
|
"target": "esnext", // es2017, esnext,es6
|
|
"module": "esnext", // commonjs, es6
|
|
"lib": [ // es2015
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"declaration": false,
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowJs": true,
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/vite/dist/",
|
|
"./types/"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
],
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./src/**/*.vue",
|
|
"src/App.tsx",
|
|
"src/orig.tsx"
|
|
, "src/views/admin/inventory/index.vue", "src/views/admin/storage/Index.tsx" ],
|
|
"types": [
|
|
"vue-sweetalert2",
|
|
"vite/client",
|
|
],
|
|
} |