37 lines
821 B
JSON
37 lines
821 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"types": ["vitest/globals", "unplugin-icons/types/vue"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"src/index.ts",
|
|
"jingrow/**/*.ts",
|
|
"jingrow/**/*.d.ts",
|
|
"jingrow/**/*.tsx",
|
|
"jingrow/**/*.vue",
|
|
"jingrow/index.js",
|
|
"vitest.config.ts",
|
|
"vitest.setup.ts"
|
|
],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|