You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["vite/client"],
|
|
"sourceRoot": "src/app"
|
|
},
|
|
"include": [
|
|
"src/app/**/*.ts",
|
|
"src/app**/*.d.ts",
|
|
"src/app/**/*.tsx",
|
|
"src/app/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"src/server"
|
|
]
|
|
}
|