mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-21 07:22:53 +08:00
35 lines
1,022 B
JSON
35 lines
1,022 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"jsx": "preserve", // "vue", 'preserve', 'react'
|
|
// "jsxImportSource": "vue",
|
|
"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/"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["webapp/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.tsx",
|
|
"./webapp/**/*.vue",
|
|
],
|
|
"types": ["vue-sweetalert2", "vite/client"]
|
|
}
|