twenty-one/tsconfig.json
2023-04-18 22:58:02 +02:00

30 lines
669 B
JSON

{
"compilerOptions": {
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"lib": ["esnext", "dom"],
"module": "esnext",
"moduleResolution": "node",
"allowJs": true,
"resolveJsonModule": true,
"importsNotUsedAsValues": "error",
"isolatedModules": true,
"rootDir": "src",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
"target": "esnext",
"types": [
"vite/client",
"unplugin-icons/types/vue",
"vite-plugin-pages/client"
]
},
"include": [
"src/**/*.ts",
"src/**/*.vue"
]
}