First PR to implement application tokens - add new application role in twenty-server - move duplicated constants and types to twenty-shared - will add role configuration utils into twenty-sdk in another PR
20 lines
388 B
JSON
20 lines
388 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["jest", "node"]
|
|
},
|
|
"include": [
|
|
"**/__mocks__/**/*",
|
|
"**/__tests__/**/*",
|
|
"vite.config.ts",
|
|
"scripts/generateBarrels.ts",
|
|
"jest.config.mjs",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.spec.tsx",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.e2e-spec.ts"
|
|
]
|
|
}
|