41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"jsx": "react",
|
|
"module": "node18",
|
|
"moduleResolution": "nodenext",
|
|
"resolveJsonModule": true,
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"noEmit": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"target": "ES2021",
|
|
"sourceMap": true,
|
|
"allowJs": false,
|
|
"outDir": "dist",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@heygermany/components": ["./packages/components"],
|
|
"@heygermany/components/*": ["./packages/components/*"],
|
|
|
|
"@heygermany/functions": ["./packages/functions"],
|
|
"@heygermany/functions/*": ["./packages/functions/*"],
|
|
|
|
"@heygermany/mantine-theme": ["./packages/mantine-theme"],
|
|
"@heygermany/mantine-theme/*": ["./packages/mantine-theme/*"],
|
|
|
|
"@heygermany/sdk": ["./packages/sdk"],
|
|
"@heygermany/sdk/*": ["./packages/sdk/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{"path": "./packages/sdk"},
|
|
{"path": "./packages/mantine-theme"},
|
|
{"path": "./packages/components"}
|
|
],
|
|
"include": ["**/.pikku/*.ts", "**/types.ts"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|