pelican-jdr/tsconfig.json

20 lines
373 B
JSON
Raw Normal View History

2023-02-03 21:02:03 +01:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
2023-02-08 20:45:19 +01:00
},
"lib": ["es2018", "dom", "esnext"],
2023-02-03 21:02:03 +01:00
},
"references": [
{
"path": "./tsconfig.config.json"
}
2023-02-08 20:45:19 +01:00
],
2023-10-17 19:02:29 +02:00
"resolveJsonModule": true,
"esModuleInterop": true,
2023-02-03 21:02:03 +01:00
}