mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 00:42:59 +08:00
39 lines
906 B
JSON
39 lines
906 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",
|
|
"./webapp/**/*.vue",
|
|
"webapp/App.tsx",
|
|
"webapp/orig.tsx"
|
|
, "webapp/views/admin/inventory/index.vue", "webapp/views/admin/storage/Index.tsx" ],
|
|
"types": [
|
|
"vue-sweetalert2",
|
|
"vite/client",
|
|
],
|
|
}
|