n0mbers/tsconfig.json

25 lines
609 B
JSON
Raw Permalink Normal View History

2022-02-07 22:14:31 +01:00
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"isolatedModules": true,
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"paths": {
"@/*": ["./src/*"]
},
2022-02-10 22:32:41 +01:00
"types": [
"unplugin-icons/types/vue",
2022-02-15 08:46:02 +01:00
"@intlify/vite-plugin-vue-i18n/client",
2022-02-10 22:32:41 +01:00
],
2022-02-07 22:14:31 +01:00
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"skipLibCheck": true
},
"include": ["vite.config.*", "env.d.ts", "src/**/*", "src/**/*.vue"]
}