mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 00:12:54 +08:00
33 lines
992 B
JSON
33 lines
992 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"]
|
|
}
|