jingrow-ui/tsconfig.json
jingrow c7bac1a7a0
Some checks failed
Publish on NPM / publish (push) Has been cancelled
Build and Deploy Storybook / build (push) Has been cancelled
Tests / test (push) Has been cancelled
initial commit
2025-10-24 00:40:30 +08:00

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" }]
}