* tests for components (WIP) * finished adding tests to components * added tests for providers * add test command to doc tests * fix imports * exclude test files * remove import * add vitest as dev dependency * fix build error * ignore test files from eslint * fix test from docs-ui
21 lines
519 B
JSON
21 lines
519 B
JSON
{
|
|
"extends": "tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"docs-ui": ["./src/index.ts"],
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"outDir": "dist",
|
|
"tsBuildInfoFile": "./dist/.tsbuildinfo-client",
|
|
"noEmit": false,
|
|
"jsx": "react",
|
|
"lib": ["dom", "es2022"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": ["src/**/*", "tailwind.config.js", "postcss.config.js"],
|
|
"exclude": ["**/__tests__/**", "**/__mocks__/**"]
|
|
}
|