mirror of
https://github.com/fmhy/edit.git
synced 2026-01-17 17:31:18 +11:00
44 lines
877 B
JSON
44 lines
877 B
JSON
{
|
|
"extends": "./.nitro/types/tsconfig.json",
|
|
"compileroptions": {
|
|
"verbatimmodulesyntax": true,
|
|
"baseurl": ".",
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"esnext"
|
|
],
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"esmoduleinterop": true,
|
|
"skiplibcheck": true,
|
|
"moduleresolution": "node",
|
|
"resolvejsonmodule": true,
|
|
"nounusedlocals": true,
|
|
"strictnullchecks": true,
|
|
"forceconsistentcasinginfilenames": true,
|
|
"sourcemap": true,
|
|
"isolatedmodules": true
|
|
},
|
|
"include": [
|
|
"**/*.vue",
|
|
"**/*.tsx",
|
|
"**/*.ts",
|
|
".vitepress/**/**/*.ts",
|
|
".vitepress/**/**/*.tsx",
|
|
".vitepress/**/**/*.vue"
|
|
],
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"dist/**"
|
|
],
|
|
"extensions": [
|
|
".js",
|
|
".ts",
|
|
".tsx",
|
|
".jsx",
|
|
".vue"
|
|
],
|
|
"allowSyntheticDefaultImports": true
|
|
}
|