frequi_origin/tsconfig.json

46 lines
845 B
JSON
Raw Normal View History

2020-06-04 18:20:48 +00:00
{
2020-11-10 19:52:39 +00:00
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
2020-11-10 19:52:39 +00:00
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
2020-11-10 19:52:39 +00:00
"noImplicitAny": false,
"allowJs": true,
"baseUrl": "src",
"types": [
2021-11-14 10:50:33 +00:00
"vite/client",
2023-05-08 19:18:47 +00:00
"unplugin-icons/types/vue",
2020-11-10 19:52:39 +00:00
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/components.d.ts",
"src/autoimport.d.ts",
],
2021-12-18 10:16:15 +00:00
"exclude": [
"node_modules",
// "tests"
],
"vueCompilerOptions": {
2022-10-30 10:01:27 +00:00
"target": 3,
"experimentalModelPropName": {
"": {
"b-form-radio": true
},
}
}
2020-06-04 18:20:48 +00:00
}