22 lines
471 B
JSON
22 lines
471 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["node"],
|
|
"composite": true,
|
|
"declaration": true,
|
|
"noEmit": false,
|
|
"skipLibCheck": true,
|
|
"rootDir": ".",
|
|
"outDir": "dist",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"references": [
|
|
{"path": "../mantine-theme"}
|
|
],
|
|
"files": [],
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts"],
|
|
"exclude": ["dist/**/*", "lib/**/*"]
|
|
}
|