felicity-lims/frontend/vite/tsconfig.json

39 lines
853 B
JSON
Raw Normal View History

2021-01-06 19:52:14 +08:00
{
"compilerOptions": {
2021-04-09 06:37:58 +08:00
"strict": true,
"jsx": "preserve", // "vue", 'preserve', 'react'
2021-01-06 19:52:14 +08:00
"outDir": "./dist",
2022-02-06 03:36:45 +08:00
"target": "esnext", // es2017, esnext,es6
"module": "esnext", // commonjs, es6
2021-01-06 19:52:14 +08:00
"lib": [ // es2015
2021-01-16 00:54:31 +08:00
"ESNext",
"DOM"
2021-01-06 19:52:14 +08:00
],
2021-04-09 06:37:58 +08:00
"declaration": false,
2021-01-06 19:52:14 +08:00
"sourceMap": true,
"noImplicitAny": false,
"allowJs": true,
2021-01-16 00:54:31 +08:00
"moduleResolution": "node",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
2021-01-06 19:52:14 +08:00
"esModuleInterop": true,
"typeRoots": [
2021-01-16 00:54:31 +08:00
"./node_modules/@types",
"./node_modules/vite/dist/",
"./types/"
2021-01-06 19:52:14 +08:00
]
},
"exclude": [
2021-01-16 00:54:31 +08:00
"node_modules"
2021-01-06 19:52:14 +08:00
],
"include": [
"./**/*.ts",
2021-01-16 00:54:31 +08:00
"./src/**/*.vue",
"src/App.tsx",
"src/orig.tsx"
, "src/views/admin/inventory/index.vue" ],
2021-04-09 06:37:58 +08:00
"types": [
2022-02-06 03:36:45 +08:00
"vue-sweetalert2",
"vite/client",
2021-04-09 06:37:58 +08:00
],
}